Repco Vehicles
Browse Repco's vehicle taxonomy (23,734 vehicles) as a cascade: Make → Model → Year → Series → Engine → Variant. Served entirely from stored data — no live Repco call. The variant leaf carries the vehicle_code used by the fitment endpoints.
Vehicle Cascade
POSTAPI Key or Session Token
https://multicartapi.com/api/v1/schedules/repco/vehicles/cascade/Given the levels chosen so far, return the options for the next unfilled level.
curl "https://multicartapi.com/api/v1/schedules/repco/vehicles/cascade/" \
-X POST \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"make": "FORD", "model": "FALCON", "year": 2016, "series": "FG X", "engine": "4.0L 6cyl"}'Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
make | string | Optional | Selected make, e.g. FORD. |
model | string | Optional | Selected model, e.g. FALCON. |
year | integer | Optional | Selected year, matched against each vehicle's year range. |
series | string | Optional | Selected series, e.g. FG X. |
engine | string | Optional | Selected engine, e.g. 4.0L 6cyl. |
Request body
{"make": "FORD", "model": "FALCON", "year": 2016, "series": "FG X", "engine": "4.0L 6cyl"}Response
{"code": 200, "data": {"level": "variant", "options": [{"vehicle_code": "65740", "variant": "XR6", "year_range": "2014-2016"}], "count": 1}, "status": 1}Notes
Send an empty body to get the list of makes. options are strings for make/model/series/engine, descending integers for year, and objects (carrying vehicle_code) for variant.
Get Vehicle
POSTAPI Key or Session Token
https://multicartapi.com/api/v1/schedules/repco/vehicles/get/Resolve a vehicle_code to its full make/model/series/engine/variant/year details.
curl "https://multicartapi.com/api/v1/schedules/repco/vehicles/get/" \
-X POST \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"vehicle_code": "65740"}'Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
vehicle_code | string | Required | The vehicle code to resolve. |
Request body
{"vehicle_code": "65740"}Response
{"code": 200, "data": {"vehicle_code": "65740", "make": "FORD", "model": "FALCON", "series": "FG X", "engine": "4.0L 6cyl", "variant": "XR6", "year_from": 2014, "year_to": 2016, "year_range": "2014-2016"}, "status": 1}Notes
Unknown vehicle_code returns code 404.
