Endpoint Playground
Test Crawlora's CarMax store locator 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/stores" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| 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 | Maximum number of stores to return, defaults to 10, capped at 300 |
{
"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"
}
}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'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.
{
"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"
}
}curl "https://api.crawlora.net/api/v1/carmax/stores" \
-H "x-api-key: $CRAWLORA_API_KEY"