Endpoint Playground
Test Crawlora's StockX brand catalog 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/stockx/brands" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"total_count": 396,
"brands": [
{
"name": "47 Brand",
"slug": "47-brand",
"group": "0-9"
},
{
"name": "Jordan",
"slug": "jordan",
"group": "J-L"
},
{
"name": "Nike",
"slug": "nike",
"group": "M-O"
}
]
}
}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 StockX's full brand catalog (name and URL slug for every brand in its own brand directory), suitable for building GET /stockx/search's brand parameter or GET /stockx/search's model parameter's required single-brand context. Credential-free public data from the same navigation API backing StockX's own site menu.
{
"code": 200,
"msg": "OK",
"data": {
"total_count": 396,
"brands": [
{
"name": "47 Brand",
"slug": "47-brand",
"group": "0-9"
},
{
"name": "Jordan",
"slug": "jordan",
"group": "J-L"
},
{
"name": "Nike",
"slug": "nike",
"group": "M-O"
}
]
}
}curl "https://api.crawlora.net/api/v1/stockx/brands" \
-H "x-api-key: $CRAWLORA_API_KEY"