logo

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

POST
https://multicartapi.com/api/v1/schedules/repco/vehicles/cascade/
API Key or Session Token

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

ParameterTypeRequiredDescription
makestringOptionalSelected make, e.g. FORD.
modelstringOptionalSelected model, e.g. FALCON.
yearintegerOptionalSelected year, matched against each vehicle's year range.
seriesstringOptionalSelected series, e.g. FG X.
enginestringOptionalSelected 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

POST
https://multicartapi.com/api/v1/schedules/repco/vehicles/get/
API Key or Session Token

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

ParameterTypeRequiredDescription
vehicle_codestringRequiredThe 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.