Endpoint Playground
Test Crawlora's Get full Nike product details 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/nike/product/details?group_key=<group_key>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| group_key | string | Yes | Product rollup key, from a search result's products[].group_key field |
{
"code": 200,
"msg": "OK",
"data": {
"group_key": "5npsVBwT",
"title": "Nike Vomero Plus",
"subtitle": "Men's Road Running Shoes",
"description": "Take maximum cushioning to the next level with the Vomero Plus...",
"product_type": "FOOTWEAR",
"genders": [
"MEN"
],
"count": 21,
"colors": [
{
"style_color": "IO4482-001",
"style_code": "IO4482",
"color_code": "001",
"grouping_label": "Regular",
"currency": "USD",
"price": 144.97,
"initial_price": 180,
"discount_percentage": 19,
"is_buyable": true,
"images": [
"https://static.nike.com/a/images/..."
],
"sizes": [
{
"label": "6",
"localized_label": "M 6 / W 7.5",
"status": "ACTIVE"
}
],
"url": "https://www.nike.com/t/vomero-plus-mens-road-running-shoes-5npsVBwT/IO4482-001"
}
]
}
}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 full product-group detail for one product's rollup key, sourced from the same anonymous mobile backend Nike's own app uses: shared product copy plus every purchasable color variant (across width groupings), each with its own pricing, sizes, and images. group_key is the product's rollup key, the same value nike-search returns as a products[].group_key field. Unlike nike-product (which returns one color variant by slug/style_color), this returns every color of the product in one response.
{
"code": 200,
"msg": "OK",
"data": {
"group_key": "5npsVBwT",
"title": "Nike Vomero Plus",
"subtitle": "Men's Road Running Shoes",
"description": "Take maximum cushioning to the next level with the Vomero Plus...",
"product_type": "FOOTWEAR",
"genders": [
"MEN"
],
"count": 21,
"colors": [
{
"style_color": "IO4482-001",
"style_code": "IO4482",
"color_code": "001",
"grouping_label": "Regular",
"currency": "USD",
"price": 144.97,
"initial_price": 180,
"discount_percentage": 19,
"is_buyable": true,
"images": [
"https://static.nike.com/a/images/..."
],
"sizes": [
{
"label": "6",
"localized_label": "M 6 / W 7.5",
"status": "ACTIVE"
}
],
"url": "https://www.nike.com/t/vomero-plus-mens-road-running-shoes-5npsVBwT/IO4482-001"
}
]
}
}curl "https://api.crawlora.net/api/v1/nike/product/details?group_key=<group_key>" \
-H "x-api-key: $CRAWLORA_API_KEY"