CarMax API endpoint
Use Crawlora's CarMax store locator API to extract supported public CarMax data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/carmax/storesSearches CarMax's physical store locations by ZIP code or free-text keyword, returning normalized stores with full address, every published phone number, opening hours, and (for a ZIP-based search) live driving distance in miles. Credential-free public data sourced from CarMax's own mobile-app store-locator API. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| zip | string | No | 5-digit US ZIP code to search near. Triggers a live geo-distance sort. Provide this or keyword; zip takes precedence if both are given | ||
| keyword | string | No | Free-text match against store name or city | ||
| take | integer | No | 10 | Maximum number of stores to return, defaults to 10, capped at 300 | |
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/carmax/stores?keyword=coffee" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
- `distance_miles` is only populated when `zip` was used to search — a `keyword` text search does not compute distance. - `hours` reports CarMax's own compact day-range representation (`start_day_of_week`/`end_day_of_week`, 0=Sunday through 6=Saturday) plus human-readable `days_of_week_display`/`hours_display` strings. - `store_availability` is a live, human-readable status string (e.g. "Open Now. Closes at 9:00 PM PDT"). - `phone_numbers` lists every phone line CarMax publishes for the store, tagged by type (local sales line, service line, fax, toll-free, ...). `primary_phone_number` is CarMax's own designated primary contact number. Example response: ```json { "code": 200, "msg": "OK", "data": { "stores": [ { "id": 7126, "name": "CarMax Burbank", "address_line1": "301 N Victory Blvd", "city": "Burbank", "state": "California", "state_abbreviation": "CA", "zip_code": "91502", "phone_numbers": [ {"type": "PhoneLocal", "number": "8184316000"} ], "primary_phone_number": "8184316000", "latitude": 34.17144, "longitude": -118.30294, "hours": [ {"start_day_of_week": 1, "end_day_of_week": 5, "open_time": "10:00:00", "close_time": "21:00:00", "days_of_week_display": "Monday - Friday", "hours_display": "10:00 AM - 9:00 PM"} ], "active_status": "Active", "store_availability": "Open Now. Closes at 9:00 PM PDT", "distance_miles": 8.3, "time_zone": "PDT", "iana_time_zone": "America/Los_Angeles", "url": "https://www.carmax.com/stores/7126" } ], "source_url": "https://mobileapps-afd-prod-endpoint-drgsgffchcfkbmg4.z01.azurefd.net/api/stores/details?Take=10&KeyWord=90210" } } ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 500 | Internal Server Error | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"stores": [
{
"id": 7126,
"name": "CarMax Burbank",
"address_line1": "301 N Victory Blvd",
"city": "Burbank",
"state": "California",
"state_abbreviation": "CA",
"zip_code": "91502",
"phone_numbers": [
{
"type": "PhoneLocal",
"number": "8184316000"
}
],
"primary_phone_number": "8184316000",
"latitude": 34.17144,
"longitude": -118.30294,
"hours": [
{
"start_day_of_week": 1,
"end_day_of_week": 5,
"open_time": "10:00:00",
"close_time": "21:00:00",
"days_of_week_display": "Monday - Friday",
"hours_display": "10:00 AM - 9:00 PM"
}
],
"active_status": "Active",
"store_availability": "Open Now. Closes at 9:00 PM PDT",
"distance_miles": 8.3,
"time_zone": "PDT",
"iana_time_zone": "America/Los_Angeles",
"url": "https://www.carmax.com/stores/7126"
}
],
"source_url": "https://mobileapps-afd-prod-endpoint-drgsgffchcfkbmg4.z01.azurefd.net/api/stores/details?Take=10&KeyWord=90210"
}
}Request schema
No body schema
Response schema
#/definitions/carmax.storeSearchResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | carmax.StoreSearchResponse | No | ||||
| data.source_url | string | No | ||||
| data.stores | array | No | ||||
| data.stores[].active_status | string | No | Active | |||
| data.stores[].address | string | No | 21300 Roscoe Blvd | |||
| data.stores[].address_line1 | string | No | 21300 Roscoe Blvd | |||
| data.stores[].address_line2 | string | No | ||||
| data.stores[].city | string | No | Canoga Park | |||
| data.stores[].distance_miles | number | No | 8.3 | |||
| data.stores[].hours | array | No | ||||
| data.stores[].hours[].close_time | string | No | 21:00:00 | |||
| data.stores[].hours[].days_of_week_display | string | No | Monday - Friday | |||
| data.stores[].hours[].end_day_of_week | integer | No | 5 | |||
| data.stores[].hours[].hours_display | string | No | 10:00 AM - 9:00 PM | |||
| data.stores[].hours[].open_time | string | No | 10:00:00 | |||
| data.stores[].hours[].start_day_of_week | integer | No | 1 | |||
| data.stores[].iana_time_zone | string | No | America/Los_Angeles | |||
| data.stores[].id | integer | No | 7124 | |||
| data.stores[].is_perfect_transfer_store | boolean | No | ||||
| data.stores[].latitude | number | No | 34.21972 | |||
| data.stores[].longitude | number | No | -118.59617 | |||
| data.stores[].name | string | No | CarMax Canoga Park | |||
| data.stores[].phone_numbers | array | No | ||||
| data.stores[].phone_numbers[].number | string | No | 8184316000 | |||
| data.stores[].phone_numbers[].type | string | No | PhoneLocal | |||
| data.stores[].primary_phone_number | string | No | 8184316000 | |||
| data.stores[].state | string | No | California | |||
| data.stores[].state_abbreviation | string | No | CA | |||
| data.stores[].store_availability | string | No | Open Now. Closes at 9:00 PM PDT | |||
| data.stores[].time_zone | string | No | PDT | |||
| data.stores[].url | string | No | https://www.carmax.com/stores/7124 | |||
| data.stores[].zip_code | string | No | 91304 | |||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/carmax/stores?keyword=coffee" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms