Cars.com API

Get Cars.com data with one API

Cars.com API returns live Cars.com data as clean JSON for us car listings with prices, specs and dealers.

C
/cars-com/v1

4 active endpoints. Every call is 1 credit.

  • POST/cars-com/v1/search
  • POST/cars-com/v1/listing_detail
  • POST/cars-com/v1/dealer
  • POST/cars-com/v1/reviews

What Cars.com endpoints does ReefAPI ship?

4 live read endpoints. Read-only data API: no writes, no account actions, no dashboard access on the target site.

4 endpoints

search

1 cr

US vehicle listings (make/model/zip/radius + price/year/mileage/stock_type, paginated).

required
optional
make, model, zip, radius, price_min, price_max, year_min, year_max, mileage_max, stock_type, page, sort, keyword

listing_detail

1 cr

Full vehicle (VIN, spec, engine/transmission/mpg, stock#, history flags [recall/accidents/own…

required
optional
id, url, vin

dealer

1 cr

Dealer profile by cars.com dealer id/URL.

required
optional
id, url

reviews

1 cr

Vehicle research/reviews by make+model (+year).

required
make, model
optional
year

Every parameter, every allowed value →

Cars.com API

3 of 4 endpoints, ready to run

View docs ↗

US vehicle listings (make/model/zip/radius + price/year/mileage/stock_type, paginated).

1 credit0 required · 4 optional
POST/cars-com/v1/search
idle
// Press "Try it" and this pane shows exactly what the
// live site returned this second — including an empty
// result, if that is the truth. No key, no account.

How the Cars.com API works

Cars.com is a normal ReefAPI surface — the same four rules that hold for every other engine on the key.

01
Authenticate
x-api-key header

No OAuth app, no request signing, no per-site account. One key covers all 185 engines.

02
Call
POST /cars-com/v1/…

Every route is a POST with a JSON body. Parameters are validated against the published schema before anything is charged.

03
Pay
1 credit per call

Credits, not seats. Failed and blocked calls are never charged, and cache hits cost nothing.

04
Read
{ ok, data, meta, error }

One envelope everywhere. meta carries latency_ms, record_count and the endpoint that answered.

What people build with Cars.com

The jobs this data is most often used for.

4

endpoints

1

credit per call

01

Pricing teams use Cars.com to get uS vehicle listings (make/model/zip/radius + price/year/mileage/stock_type, paginated); every….

02

Marketplace operators use Cars.com to get full vehicle (VIN, spec, engine/transmission/mpg, stock#, history flags [recall/accidents/own….

03

Catalog enrichment teams use Cars.com to get dealer profile by cars.com dealer id/URL.

04

Retail analysts use Cars.com to get vehicle research/reviews by make+model (+year).

What Cars.com data costs

The cheapest call here is 1 credit, so $15/mo (Pro) buys 10,000 of them — $1.50 per 1,000 credits. Credits roll over and never expire, and failed or blocked calls are not charged.

Full pricing →
$0.67–$1.50 / 1,000 credits
  • 1,000 free credits on signup, no card
  • One key, all 185 APIs, one credit pool
  • Failed and blocked calls are never charged
  • Credits roll over and never expire

Call it in two lines

Sign up, get 1,000 credits and one key that works on every engine. Then this is the whole protocol.

curl
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"}'
python
import requests

r = requests.post(
    "https://api.reefapi.com/cars-com/v1/search",
    headers={"x-api-key": REEF_KEY},
    json={
  "make": "Honda",
  "model": "Accord",
  "zip": "60601",
  "stock_type": "used"
},
)
print(r.json()["data"])
FAQ

Have a question? We got answers.

The questions people actually ask before wiring up Cars.com.

Get a free key →
What is the Cars.com API?

Cars.com API is a ReefAPI endpoint group for us car listings with prices, specs and dealers. It returns live JSON through POST requests under /cars-com/v1.

Is the Cars.com API free to try?

Yes. ReefAPI starts with 1,000 free credits, no card required. Cars.com calls use the same shared credit balance as every other ReefAPI engine.

Do I need a Cars.com login or account?

No login to Cars.com is needed for the API response. You call ReefAPI with your x-api-key header, and the playground can run live examples before you create a production key.

How fresh is the Cars.com data?

The page example is captured from a live search call, and production requests fetch live data through ReefAPI rather than a static sample.

How many credits does the Cars.com API use?

Cars.com actions currently cost 1 credit per successful call. Failed or blocked calls are free, and all APIs draw from one credit pool.

Can I call Cars.com from an AI assistant or MCP client?

Yes. Connect ReefAPI once through MCP and your assistant can call cars-com actions with the same key, credit pool and JSON envelope used by normal REST requests.

Is the Cars.com API a Cars.com scraper?

It is the managed alternative to a DIY Cars.com scraper. Instead of building and maintaining your own scraper — proxies, headless browsers, captcha and constant breakage — you call one ReefAPI endpoint and get the same us car listings with prices, specs and dealers back as clean JSON.

Why does my Cars.com scraper keep getting blocked?

Most Cars.com scrapers break on anti-bot defenses, rate limits and IP bans that need rotating residential proxies and browser fingerprinting to clear. ReefAPI handles all of that for you — no proxies, no captchas, no maintenance — and returns live JSON. Blocked or failed calls are free.

37 E-commerce & Marketplaces APIs on the same key

One key, one credit pool, one response envelope. If you are pulling Cars.com, you are one call away from the rest of the category — no second contract, no second integration.

Try it on your own data before you pay anything

The call above is the real endpoint, not a recording. A free key gives you 1,000 credits, the other 184 APIs, and the same envelope everywhere.

Endpoints, parameters and credit costs on this page are read from the live catalog and cannot drift from what the API accepts.