Skip to main content
Version: V2

GET Product Details

Route

/api/v2/product/details/{style_code}

Ability

  • product-details

Response 200 (success)

{
"error": false,
"product": {
"sku": "string",
"type": "string",
"colourway": "string",
"category": "string",
"title": "string",
"brand": "string",
"nickname": "string",
"designer": "string",
"main_color": "string",
"model": "string",
"product_unique_id": "string|null",
"gender": "string",
"upper_material": "string",
"release_date": "YYYY-MM-DD|string",
"release_date_formatted": "DD/MM/YYYY|string",
"retail_price": "string|number|null",
"retail_price_gbp": "string|number|null",
"retail_price_usd": "string|number|null",
"description": "string",
"stockx_total_sold": "number|string|null",
"image": "url|string",
"sizes": [
{
"eu": "string",
"uk": "string",
"us": "string",
"ean": "string|null",
"upc": "string|null"
}
],
"variants": 1,
"variant_format": "UK|N/A|string",
"size_run": "string",
"internal_category": "Sneakers|Clothing|Accessories|Collectibles|string",
"search_sku": "string"
},
"response_time": "XXXms",
"request_fulfilled": true,
"request_debited": true
}

Response 200 (not found)

{
"error": true,
"message": "No product could be found for this style code.",
"response_time": "XXXms",
"request_fulfilled": true,
"request_debited": false
}

Response 403

{
"error": true,
"message": "API Token has run out of usage, please top up via the dashboard.",
"response_time": "XXXms",
"request_fulfilled": false,
"request_debited": false
}