Endpoint Playground
Test Crawlora's CarMax vehicle recommendations API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/carmax/vehicle/<stock_number>/recommendations?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| stock_number (path) | string | Yes | CarMax stock number to find similar vehicles for, the numeric path segment of a /car/{stock_number} URL | |
| store_id | string | Yes | CarMax store id used as the recommendation's location context. See any search/vehicle/store response's store id field |
{
"code": 200,
"msg": "OK",
"data": {
"stock_number": 28187774,
"recommendations": [
{
"stock_number": 70078825,
"description": "2022 Honda Civic Sport",
"mileage_display": "78K",
"price_display": "$22,998",
"location": "San Gabriel Valley/Duarte",
"vehicle_caption": "Only available at CarMax San Gabriel Valley/Duarte, CA",
"hero_image_url": "https://img2.carmax.com/assets/70078825/hero.jpg?width=400&height=225",
"url": "https://www.carmax.com/car/70078825"
}
],
"source_url": "https://mobileapps-afd-prod-endpoint-drgsgffchcfkbmg4.z01.azurefd.net/api/vehicles/recommendations?locationId=7124&stockNumber=28187774"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns CarMax's own similar-vehicle recommendations for a listing: stock number, description, display mileage/price, store location, and image, for vehicles CarMax considers comparable. An empty list is a normal result, not an error. Credential-free public data sourced from CarMax's own mobile-app API.
{
"code": 200,
"msg": "OK",
"data": {
"stock_number": 28187774,
"recommendations": [
{
"stock_number": 70078825,
"description": "2022 Honda Civic Sport",
"mileage_display": "78K",
"price_display": "$22,998",
"location": "San Gabriel Valley/Duarte",
"vehicle_caption": "Only available at CarMax San Gabriel Valley/Duarte, CA",
"hero_image_url": "https://img2.carmax.com/assets/70078825/hero.jpg?width=400&height=225",
"url": "https://www.carmax.com/car/70078825"
}
],
"source_url": "https://mobileapps-afd-prod-endpoint-drgsgffchcfkbmg4.z01.azurefd.net/api/vehicles/recommendations?locationId=7124&stockNumber=28187774"
}
}curl "https://api.crawlora.net/api/v1/carmax/vehicle/<stock_number>/recommendations?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"