Endpoint Playground
Test Crawlora's StockX product detail 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/product/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | StockX product URL slug (the urlKey), the path segment of a https://stockx.com/{slug} product page |
{
"code": 200,
"msg": "OK",
"data": {
"id": "019ac251-3a0d-7243-bb16-5128353be8bf",
"url_key": "air-jordan-5-retro-black-university-blue-2026",
"title": "Jordan 5 Retro Black University Blue (2026)",
"primary_title": "Jordan 5 Retro",
"secondary_title": "Black University Blue (2026)",
"brand": "Jordan",
"model": "Jordan 5 Retro",
"gender": "men",
"product_category": "sneakers",
"primary_category": "Air Jordan",
"style_id": "DD0587-008",
"colorway": "Black/University Blue/White",
"retail_price": "220",
"release_date": "2026-06-20",
"description": "The Air Jordan 5 Retro in Black, University Blue, and White for 2026 ...",
"image_url": "https://images.stockx.com/images/Air-Jordan-5-Retro-Black-University-Blue-2026-Product.jpg",
"traits": [
{
"name": "Style",
"value": "DD0587-008"
},
{
"name": "Colorway",
"value": "Black/University Blue/White"
},
{
"name": "Retail Price",
"value": "220",
"format": "currency"
},
{
"name": "Release Date",
"value": "2026-06-20",
"format": "date"
}
],
"market": {
"lowest_ask": 260,
"highest_bid": 315,
"number_of_asks": 1341,
"number_of_bids": 334,
"last_sale": 271,
"sales_last_72_hours": 713,
"annual_average_price": 253,
"annual_sales_count": 12394,
"ask_service_levels": {
"standard": {
"count": 1341,
"lowest_ask": 260
},
"express_standard": {
"count": 668,
"lowest_ask": 271,
"inventory_type": "CUSTODIAL"
},
"express_next_day": {
"count": 234,
"lowest_ask": 271,
"inventory_type": "CUSTODIAL"
}
}
},
"listings": [
{
"price": 250,
"condition": "New - Other",
"condition_alias": "new-other",
"condition_description": "Replacement box",
"size": "12",
"size_descriptor": "Size"
}
],
"related_products": [
{
"id": "63aff9cd-af0e-4027-b54d-555bf1f80bf7",
"url_key": "air-jordan-5-retro-wolf-grey-2026",
"title": "Jordan 5 Retro Wolf Grey (2026)",
"brand": "Jordan",
"model": "Jordan 5 Retro",
"gender": "men",
"product_category": "sneakers",
"lowest_ask": 197,
"highest_bid": 195,
"last_sale": 288
}
],
"badges": [
{
"id": "SELLING_FAST",
"title": "713 Sold in Last 3 Days!",
"subtitle": "This item sells fast."
}
],
"source_url": "https://stockx.com/air-jordan-5-retro-black-university-blue-2026"
}
}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 a normalized StockX product: identity (title, brand, model, colorway, style id, retail price, release date, description, image), current market data (lowest ask, highest bid, last sale, trailing average price/sales count, delivery-speed ask tiers), individual seller listings (price, condition, size), related-product recommendations (other colorways/siblings StockX surfaces on the product page), and any promotional badges. Credential-free public data from StockX's own product-page GraphQL API.
{
"code": 200,
"msg": "OK",
"data": {
"id": "019ac251-3a0d-7243-bb16-5128353be8bf",
"url_key": "air-jordan-5-retro-black-university-blue-2026",
"title": "Jordan 5 Retro Black University Blue (2026)",
"primary_title": "Jordan 5 Retro",
"secondary_title": "Black University Blue (2026)",
"brand": "Jordan",
"model": "Jordan 5 Retro",
"gender": "men",
"product_category": "sneakers",
"primary_category": "Air Jordan",
"style_id": "DD0587-008",
"colorway": "Black/University Blue/White",
"retail_price": "220",
"release_date": "2026-06-20",
"description": "The Air Jordan 5 Retro in Black, University Blue, and White for 2026 ...",
"image_url": "https://images.stockx.com/images/Air-Jordan-5-Retro-Black-University-Blue-2026-Product.jpg",
"traits": [
{
"name": "Style",
"value": "DD0587-008"
},
{
"name": "Colorway",
"value": "Black/University Blue/White"
},
{
"name": "Retail Price",
"value": "220",
"format": "currency"
},
{
"name": "Release Date",
"value": "2026-06-20",
"format": "date"
}
],
"market": {
"lowest_ask": 260,
"highest_bid": 315,
"number_of_asks": 1341,
"number_of_bids": 334,
"last_sale": 271,
"sales_last_72_hours": 713,
"annual_average_price": 253,
"annual_sales_count": 12394,
"ask_service_levels": {
"standard": {
"count": 1341,
"lowest_ask": 260
},
"express_standard": {
"count": 668,
"lowest_ask": 271,
"inventory_type": "CUSTODIAL"
},
"express_next_day": {
"count": 234,
"lowest_ask": 271,
"inventory_type": "CUSTODIAL"
}
}
},
"listings": [
{
"price": 250,
"condition": "New - Other",
"condition_alias": "new-other",
"condition_description": "Replacement box",
"size": "12",
"size_descriptor": "Size"
}
],
"related_products": [
{
"id": "63aff9cd-af0e-4027-b54d-555bf1f80bf7",
"url_key": "air-jordan-5-retro-wolf-grey-2026",
"title": "Jordan 5 Retro Wolf Grey (2026)",
"brand": "Jordan",
"model": "Jordan 5 Retro",
"gender": "men",
"product_category": "sneakers",
"lowest_ask": 197,
"highest_bid": 195,
"last_sale": 288
}
],
"badges": [
{
"id": "SELLING_FAST",
"title": "713 Sold in Last 3 Days!",
"subtitle": "This item sells fast."
}
],
"source_url": "https://stockx.com/air-jordan-5-retro-black-university-blue-2026"
}
}curl "https://api.crawlora.net/api/v1/stockx/product/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"