Skip to main content
POST
/
api
/
cars
/
listings
/cars/listings
curl --request POST \
  --url https://api.anysite.io/api/cars/listings \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "vin": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "CarsListingDetail",
    "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,
    "interior_color": "<string>",
    "engine": "<string>",
    "mpg": "<string>",
    "ev_range": "<string>",
    "charge_time": "<string>",
    "transmission": "<string>",
    "description": "<string>",
    "deal_rating": "<string>",
    "dealer_name": "<string>",
    "dealer_rating": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
vin
string
required

Vehicle Identification Number (VIN) of the listing

Minimum string length: 1
Example:

"1HGCV2F30LA028120"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:CarsListingDetail
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
interior_color
string | null
engine
string | null
mpg
string | null
ev_range
string | null
charge_time
string | null
transmission
string | null
description
string | null
deal_rating
string | null
dealer_name
string | null
dealer_rating
number | null