Endpoint Playground
Test Crawlora's CarMax shop-by-brand make taxonomy 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/shop-by-brand" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"brands": [
{
"make": "Acura",
"image_url": "https://content-images.carmax.com/qeontfmijmzv/25NcA62ks4WtOMUJlvsW9x/77ace1ff19f51d1968a363b1515c4af6/acura.jpg",
"display_order": 1
},
{
"make": "Audi",
"image_url": "https://content-images.carmax.com/qeontfmijmzv/31ViiSHNIysuutwlO3zprm/08b0abfc8ca32732d32061a788af51e3/audi.jpg",
"display_order": 2
},
{
"make": "BMW",
"image_url": "https://content-images.carmax.com/qeontfmijmzv/4w3T6OsuubLfEu9bxafgBn/c99282ded8407ca5deed20551f77e4cf/bmw.jpg",
"display_order": 3
}
],
"source_url": "https://mobileapps-afd-prod-endpoint-drgsgffchcfkbmg4.z01.azurefd.net/api/search/shop-by-brand"
}
}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 full make taxonomy for browsing by brand: every make, a display image, and CarMax's own display order. Credential-free public data sourced from CarMax's own mobile-app API.
{
"code": 200,
"msg": "OK",
"data": {
"brands": [
{
"make": "Acura",
"image_url": "https://content-images.carmax.com/qeontfmijmzv/25NcA62ks4WtOMUJlvsW9x/77ace1ff19f51d1968a363b1515c4af6/acura.jpg",
"display_order": 1
},
{
"make": "Audi",
"image_url": "https://content-images.carmax.com/qeontfmijmzv/31ViiSHNIysuutwlO3zprm/08b0abfc8ca32732d32061a788af51e3/audi.jpg",
"display_order": 2
},
{
"make": "BMW",
"image_url": "https://content-images.carmax.com/qeontfmijmzv/4w3T6OsuubLfEu9bxafgBn/c99282ded8407ca5deed20551f77e4cf/bmw.jpg",
"display_order": 3
}
],
"source_url": "https://mobileapps-afd-prod-endpoint-drgsgffchcfkbmg4.z01.azurefd.net/api/search/shop-by-brand"
}
}curl "https://api.crawlora.net/api/v1/carmax/shop-by-brand" \
-H "x-api-key: $CRAWLORA_API_KEY"