Endpoint Playground
Test Crawlora's CarMax vehicle listing detail 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>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| stock_number (path) | string | Yes | CarMax stock number, the numeric path segment of a /car/{stock_number} URL | |
| store_id | string | No | Optional CarMax store id for pricing/transfer-fee display context. Defaults to a fixed CarMax store when omitted |
{
"code": 200,
"msg": "OK",
"data": {
"stock_number": 28187774,
"vin": "1FMJK1K89REA27006",
"year": 2024,
"make": "Ford",
"model": "Expedition Max",
"trim": "Limited",
"body": "4D Sport Utility",
"mileage": 41406,
"exterior_color": "Black",
"interior_color": "Tan",
"engine": "3.5L",
"transmission": {
"type": "Automatic",
"display": "Automatic"
},
"drive_train_type": "Rear Wheel Drive",
"fuel": {
"type": "Gas"
},
"efficiency": {
"mpg_city": 17,
"mpg_highway": 23
},
"price_info": {
"price": 45998,
"is_price_reduced": true,
"previous_price": 46998
},
"store": {
"id": 7124,
"name": "Canoga Park",
"state": "CA",
"latitude": 34.21972,
"longitude": -118.59617
},
"cylinders": 6,
"horsepower": 400,
"engine_torque_lb_ft": 480,
"specs": [
{
"name": "Transmission",
"display_value": "Automatic"
},
{
"name": "EPA estimated mileage",
"display_value": "17/23 mpg"
}
],
"features": [
{
"name": "Panoramic Sunroof"
},
{
"name": "Leather Seats"
}
],
"warranties": [
{
"type": "Basic",
"years": 3,
"miles": 36000
},
{
"type": "Powertrain",
"years": 5,
"miles": 60000
}
],
"history": {
"accident_count": 1,
"owner_count": 1,
"prior_uses": [
"Leased Vehicle",
"Rental"
]
},
"vehicle_guarantee": {
"title": "Love your car guarantee",
"description": "30-day money back returns (up to 1,500 miles)",
"disclaimer": "Take 24 hours to decide. You can then purchase or return the car..."
},
"url": "https://www.carmax.com/car/28187774",
"source_url": "https://mobileapps-afd-prod-endpoint-drgsgffchcfkbmg4.z01.azurefd.net/api/vehicles/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 a normalized CarMax vehicle listing: full vehicle spec (make, model, trim, mileage, colors, engine, transmission, fuel economy, pricing), equipment features, labeled specifications, warranty coverage, accident/owner history, and CarMax's return guarantee terms. Credential-free public data sourced primarily from CarMax's own mobile-app API, backfilled with the website's server-rendered page for accident/owner history and warranty terms the mobile API doesn't expose.
{
"code": 200,
"msg": "OK",
"data": {
"stock_number": 28187774,
"vin": "1FMJK1K89REA27006",
"year": 2024,
"make": "Ford",
"model": "Expedition Max",
"trim": "Limited",
"body": "4D Sport Utility",
"mileage": 41406,
"exterior_color": "Black",
"interior_color": "Tan",
"engine": "3.5L",
"transmission": {
"type": "Automatic",
"display": "Automatic"
},
"drive_train_type": "Rear Wheel Drive",
"fuel": {
"type": "Gas"
},
"efficiency": {
"mpg_city": 17,
"mpg_highway": 23
},
"price_info": {
"price": 45998,
"is_price_reduced": true,
"previous_price": 46998
},
"store": {
"id": 7124,
"name": "Canoga Park",
"state": "CA",
"latitude": 34.21972,
"longitude": -118.59617
},
"cylinders": 6,
"horsepower": 400,
"engine_torque_lb_ft": 480,
"specs": [
{
"name": "Transmission",
"display_value": "Automatic"
},
{
"name": "EPA estimated mileage",
"display_value": "17/23 mpg"
}
],
"features": [
{
"name": "Panoramic Sunroof"
},
{
"name": "Leather Seats"
}
],
"warranties": [
{
"type": "Basic",
"years": 3,
"miles": 36000
},
{
"type": "Powertrain",
"years": 5,
"miles": 60000
}
],
"history": {
"accident_count": 1,
"owner_count": 1,
"prior_uses": [
"Leased Vehicle",
"Rental"
]
},
"vehicle_guarantee": {
"title": "Love your car guarantee",
"description": "30-day money back returns (up to 1,500 miles)",
"disclaimer": "Take 24 hours to decide. You can then purchase or return the car..."
},
"url": "https://www.carmax.com/car/28187774",
"source_url": "https://mobileapps-afd-prod-endpoint-drgsgffchcfkbmg4.z01.azurefd.net/api/vehicles/28187774"
}
}curl "https://api.crawlora.net/api/v1/carmax/vehicle/<stock_number>" \
-H "x-api-key: $CRAWLORA_API_KEY"