Skip to main content
POST
/
api
/
cargurus
/
dealers
/
listings
/cargurus/dealers/listings
curl --request POST \
  --url https://api.anysite.io/api/cargurus/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": "CargurusListing",
    "url": "<string>",
    "vin": "<string>",
    "make": "<string>",
    "model": "<string>",
    "year": 123,
    "trim": "<string>",
    "body_type": "<string>",
    "price": 123,
    "total_price": 123,
    "imv": 123,
    "deal_rating": "<string>",
    "deal_score": 123,
    "mileage": 123,
    "drivetrain": "<string>",
    "transmission": "<string>",
    "engine": "<string>",
    "doors": 123,
    "exterior_color": "<string>",
    "interior_color": "<string>",
    "fuel_type": "<string>",
    "city_mpg": 123,
    "highway_mpg": 123,
    "combined_mpg": 123,
    "ev_battery": {
      "@type": "CargurusEvBattery",
      "capacity_kwh": 123,
      "range_mi": 123,
      "charge_time_240v_hr": 123
    },
    "is_cpo": false,
    "is_new": false,
    "safety_rating": 123,
    "days_on_market": 123,
    "distance": 123,
    "stock_number": "<string>",
    "price_drop": 123,
    "original_price": 123,
    "image": "<string>",
    "image_count": 123,
    "options": [],
    "seller_id": "<string>",
    "seller_name": "<string>",
    "seller_city": "<string>",
    "seller_state": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
dealer
string
required

Dealer id or a full CarGurus dealer storefront URL

Minimum string length: 1
Examples:

"389627"

"https://www.cargurus.com/Cars/m-Redlands-Chrysler-Jeep-Dodge-Ram-sp389627"

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,
best_deal,
price_low,
price_high,
mileage_low,
mileage_high,
distance,
year_new,
year_old,
newest_listed,
oldest_listed

Response

Successful Response

id
string
required
@type
string
default:CargurusListing
url
string | null
vin
string | null
make
string | null
model
string | null
year
integer | null
trim
string | null
body_type
string | null
price
number | null
total_price
number | null
imv
number | null
deal_rating
string | null
deal_score
number | null
mileage
number | null
drivetrain
string | null
transmission
string | null
engine
string | null
doors
integer | null
exterior_color
string | null
interior_color
string | null
fuel_type
string | null
city_mpg
number | null
highway_mpg
number | null
combined_mpg
number | null
ev_battery
object
is_cpo
boolean
default:false
is_new
boolean
default:false
safety_rating
integer | null
days_on_market
integer | null
distance
number | null
stock_number
string | null
price_drop
number | null
original_price
number | null
image
string | null
image_count
integer | null
options
string[]
seller_id
string | null
seller_name
string | null
seller_city
string | null
seller_state
string | null