Endpoint Playground
Test Crawlora's StockX category-browse 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/stockx/search?category=sneakers&gender=men&color=white&shoe_height=low&activity=basketball&sort=featured" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | Yes | sneakers | StockX top-level category |
| query | string | No | Free-text keyword search within the category, e.g. a model name or colorway | |
| gender | string | No | men | Filter by gender, comma-separated for multiple values |
| brand | string | No | Filter by one or more brand slugs, comma-separated, e.g. jordan,nike | |
| model | string | No | Filter by a single model slug, e.g. air-force-1. Requires exactly one value in brand | |
| color | string | No | white | Filter by color, comma-separated for multiple values |
| shoe_height | string | No | low | Filter by shoe height, comma-separated for multiple values |
| activity | string | No | basketball | Filter by activity, comma-separated for multiple values |
| available_now | boolean | No | Only include products with at least one active ask | |
| xpress_ship | boolean | No | Only include products with StockX Xpress Ship availability | |
| below_retail | boolean | No | Only include products currently trading below original retail price | |
| sort | string | No | featured | Result sort order, defaults to featured |
| page | integer | No | 1-indexed result page, defaults to 1 | |
| limit | integer | No | Results per page, defaults to 20, maximum 100 |
{
"code": 200,
"msg": "OK",
"data": {
"category": "sneakers",
"query": "jordan 5",
"sort": "featured",
"page": 1,
"limit": 20,
"total_count": 1000,
"products": [
{
"id": "9acafeb5-bc4a-4d66-bc3a-4899d2e64775",
"url_key": "air-jordan-4-retro-toro-bravo-2026",
"title": "Jordan 4 Retro Toro Bravo (2026)",
"brand": "Jordan",
"model": "Jordan 4 Retro",
"gender": "men",
"product_category": "sneakers",
"image_url": "https://images.stockx.com/images/toro-bravo-thumb.jpg",
"lowest_ask": 173,
"highest_bid": 267,
"last_sale": 176
}
]
}
}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.
Browses StockX's product catalog by category with optional free-text keyword search and facet filters (gender, brand, color, shoe height, activity, availability), returning normalized product summaries with headline pricing plus the total matching count. Credential-free public data from the same GraphQL API backing StockX's own category browse pages.
{
"code": 200,
"msg": "OK",
"data": {
"category": "sneakers",
"query": "jordan 5",
"sort": "featured",
"page": 1,
"limit": 20,
"total_count": 1000,
"products": [
{
"id": "9acafeb5-bc4a-4d66-bc3a-4899d2e64775",
"url_key": "air-jordan-4-retro-toro-bravo-2026",
"title": "Jordan 4 Retro Toro Bravo (2026)",
"brand": "Jordan",
"model": "Jordan 4 Retro",
"gender": "men",
"product_category": "sneakers",
"image_url": "https://images.stockx.com/images/toro-bravo-thumb.jpg",
"lowest_ask": 173,
"highest_bid": 267,
"last_sale": 176
}
]
}
}curl "https://api.crawlora.net/api/v1/stockx/search?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"