Skip to main content
POST
/
api
/
cars
/
dealers
/
listings
/cars/dealers/listings
curl --request POST \
  --url https://api.anysite.io/api/cars/dealers/listings \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "dealer": "<string>",
  "count": 2,
  "timeout": 300,
  "sort": "best_match"
}
'
[
  {
    "id": "<string>",
    "@type": "CarsListing",
    "url": "<string>",
    "vin": "<string>",
    "make": "<string>",
    "model": "<string>",
    "year": 123,
    "trim": "<string>",
    "body_style": "<string>",
    "stock_type": "<string>",
    "is_cpo": false,
    "is_verified": false,
    "price": 123,
    "msrp": 123,
    "mileage": 123,
    "drivetrain": "<string>",
    "exterior_color": "<string>",
    "fuel_type": "<string>",
    "seller_id": "<string>",
    "seller_zip": "<string>",
    "financing_type": "<string>",
    "image": "<string>",
    "images": [],
    "image_count": 123,
    "rank_enthusiast": 123,
    "rank_family_friendly": 123,
    "rank_luxury": 123,
    "rank_off_road": 123,
    "rank_sporty": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
dealer
string
required

Dealer/seller id (the seller_id returned on Cars.com listings)

Minimum string length: 1
Example:

"526e7d6f-3e93-5493-bb4f-54d92ab64807"

count
integer
required

Max number of results to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
sort
enum<string>
default:best_match

Sort order

Available options:
best_match,
price_low,
price_high,
mileage_low,
mileage_high,
distance,
best_deal,
year_new,
year_old,
newest_listed,
oldest_listed

Response

Successful Response

id
string
required
@type
string
default:CarsListing
url
string | null
vin
string | null
make
string | null
model
string | null
year
integer | null
trim
string | null
body_style
string | null
stock_type
string | null
is_cpo
boolean
default:false
is_verified
boolean
default:false
price
number | null
msrp
number | null
mileage
number | null
drivetrain
string | null
exterior_color
string | null
fuel_type
string | null
seller_id
string | null
seller_zip
string | null
financing_type
string | null
image
string | null
images
string[]
image_count
integer | null
rank_enthusiast
number | null
rank_family_friendly
number | null
rank_luxury
number | null
rank_off_road
number | null
rank_sporty
number | null