Skip to main content
POST
/
api
/
cargurus
/
dealers
/
reviews
/cargurus/dealers/reviews
curl --request POST \
  --url https://api.anysite.io/api/cargurus/dealers/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "dealer": "<string>",
  "timeout": 300
}
'
[
  {
    "@type": "CargurusDealerReview",
    "id": "<string>",
    "rating": 123,
    "text": "<string>",
    "author": "<string>",
    "created_at": 123,
    "ownership_status": "<string>",
    "helpful_count": 123,
    "total_rating_count": 123
  }
]

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:CargurusDealerReview
id
string | null
rating
integer | null
text
string | null
author
string | null
created_at
integer | null
ownership_status
string | null
helpful_count
integer | null
total_rating_count
integer | null