Endpoint Playground
Test Crawlora's CarMax vehicle listing search 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/search" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| make | string | No | CarMax make, e.g. honda, Toyota, BMW (case-insensitive) | |
| model | string | No | CarMax model, e.g. civic (case-insensitive). Does not require make | |
| zip | string | No | 5-digit US ZIP code to bias results toward CarMax's nearest store | |
| sort | string | No | Sort order: bestmatch, distance-asc, price-asc, price-desc, mileage-asc, mileage-desc, year-desc, year-asc, newarrival. Defaults to bestmatch | |
| min_year | integer | No | Minimum model year | |
| max_year | integer | No | Maximum model year | |
| min_price | integer | No | Minimum price in US dollars | |
| max_price | integer | No | Maximum price in US dollars | |
| max_mileage | integer | No | Maximum odometer mileage | |
| page | integer | No | 1-indexed result page, defaults to 1. CarMax returns 48 results per page |
{
"code": 200,
"msg": "OK",
"data": {
"total_count": 91136,
"page": 1,
"page_size": 48,
"vehicles": [
{
"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"
},
"hero_image_url": "https://img2.carmax.com/assets/28187774/hero.jpg?width=400",
"highlighted_features": [
"Turbo Charged Engine",
"Leather Seats",
"Panoramic Sunroof"
],
"engine_torque_lb_ft": 480,
"engine_torque_rpm": 2250,
"horsepower": 400,
"horsepower_rpm": 5000,
"cylinders": 6,
"towing_capacity_lbs": 6300,
"passenger_count": 7,
"prior_uses": [
"Leased Vehicle",
"Rental"
],
"image_count": 31,
"description": "2024 Ford Expedition Max Limited",
"url": "https://www.carmax.com/car/28187774"
}
],
"filters": [
{
"name": "Make",
"display_name": "Make",
"type": "Value",
"values": [
{
"value": "Toyota",
"count": 12453
},
{
"value": "Ford",
"count": 9821
}
]
},
{
"name": "BasePrice",
"display_name": "Price range",
"type": "Range",
"range": {
"minimum": 8000,
"maximum": 138999,
"increment": 1000,
"histogram": [
{
"minimum": 8000,
"maximum": 8999,
"count": 4
},
{
"minimum": 9000,
"maximum": 9999,
"count": 36
}
]
}
}
],
"source_url": "https://mobileapps-afd-prod-endpoint-drgsgffchcfkbmg4.z01.azurefd.net/api/search"
}
}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.
Searches CarMax for used car listings, returning normalized vehicle summaries (make, model, trim, year, mileage, colors, engine, fuel economy, pricing, store, images), available search facets with live counts, and the total matching count. Credential-free public data sourced from CarMax's own mobile-app search API.
{
"code": 200,
"msg": "OK",
"data": {
"total_count": 91136,
"page": 1,
"page_size": 48,
"vehicles": [
{
"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"
},
"hero_image_url": "https://img2.carmax.com/assets/28187774/hero.jpg?width=400",
"highlighted_features": [
"Turbo Charged Engine",
"Leather Seats",
"Panoramic Sunroof"
],
"engine_torque_lb_ft": 480,
"engine_torque_rpm": 2250,
"horsepower": 400,
"horsepower_rpm": 5000,
"cylinders": 6,
"towing_capacity_lbs": 6300,
"passenger_count": 7,
"prior_uses": [
"Leased Vehicle",
"Rental"
],
"image_count": 31,
"description": "2024 Ford Expedition Max Limited",
"url": "https://www.carmax.com/car/28187774"
}
],
"filters": [
{
"name": "Make",
"display_name": "Make",
"type": "Value",
"values": [
{
"value": "Toyota",
"count": 12453
},
{
"value": "Ford",
"count": 9821
}
]
},
{
"name": "BasePrice",
"display_name": "Price range",
"type": "Range",
"range": {
"minimum": 8000,
"maximum": 138999,
"increment": 1000,
"histogram": [
{
"minimum": 8000,
"maximum": 8999,
"count": 4
},
{
"minimum": 9000,
"maximum": 9999,
"count": 36
}
]
}
}
],
"source_url": "https://mobileapps-afd-prod-endpoint-drgsgffchcfkbmg4.z01.azurefd.net/api/search"
}
}curl "https://api.crawlora.net/api/v1/carmax/search" \
-H "x-api-key: $CRAWLORA_API_KEY"