Try any of 1042 endpoints — live.
Pick an endpoint, load a working example, tweak the params, and send — no signup to try. Results render the way the data deserves; raw JSON, headers & code are one tab away.
US vehicle listings (make/model/zip/radius + price/year/mileage/stock_type, paginated); every card carries VIN
Vehicle make (e.g. 'Honda'). Accepts a single value or a list.
Vehicle model (e.g. 'Accord'). Use with make; a single value or list.
US ZIP code to center the search; omit to search nationwide.
Search radius in miles around the ZIP (default 30; ignored if no zip). (0–)
Minimum list price in USD. (0–)
Maximum list price in USD. (0–)
Earliest model year. (1900–2100)
Latest model year. (1900–2100)
Maximum mileage (miles). (0–)
New / used / certified-pre-owned filter (unknown values fall back to 'all').
Results page (paginated). Default 1. (1–)
Result ordering. Common cars.com sort keys shown; other keys are passed through as-is.
Free-text keyword filter (matched against listing text).
curl -X POST https://api.reefapi.com/cars-com/v1/search \
-H "x-api-key: $REEF_KEY" \
-H "content-type: application/json" \
-d '{"make":"Honda","model":"Accord","zip":"60601","stock_type":"used"}'Hit Send to run this endpoint live.