Skip to main content
POST
/
api
/
cargurus
/
dealers
/cargurus/dealers
curl --request POST \
  --url https://api.anysite.io/api/cargurus/dealers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "dealer": "<string>",
  "timeout": 300
}
'
[
  {
    "@type": "CargurusDealer",
    "id": "<string>",
    "name": "<string>",
    "street": "<string>",
    "city": "<string>",
    "state": "<string>",
    "zip": "<string>",
    "latitude": 123,
    "longitude": 123,
    "sales_phone": "<string>",
    "service_phone": "<string>",
    "website_url": "<string>",
    "image": "<string>",
    "facebook_url": "<string>",
    "instagram_url": "<string>",
    "youtube_url": "<string>",
    "google_maps_url": "<string>",
    "average_rating": 123,
    "review_count": 123,
    "listing_count": 123,
    "opening_hours": [],
    "reviews": []
  }
]

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"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:CargurusDealer
id
string | null
name
string | null
street
string | null
city
string | null
state
string | null
zip
string | null
latitude
number | null
longitude
number | null
sales_phone
string | null
service_phone
string | null
website_url
string | null
image
string | null
facebook_url
string | null
instagram_url
string | null
youtube_url
string | null
google_maps_url
string | null
average_rating
number | null
review_count
integer | null
listing_count
integer | null
opening_hours
object[]
reviews
object[]