Nike API endpoint
Use Crawlora's Get a Nike product API to extract supported public Nike data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/nike/productReturns normalized product-detail data for one color variant: title, description, pricing, images, every offered size, and every other available color. slug and style_color together reproduce Nike's own product page URL (nike.com/t/<slug>/<style_color>) and are both returned by nike-search's product colors[].slug and colors[].style_color fields. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| slug | string | Yes | Product-detail URL slug, from a search result's colors[].slug field | ||
| style_color | string | Yes | Style-color id, from a search result's colors[].style_color field | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/nike/product" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
- `sizes` lists every size Nike currently offers for this color, each with its own `status` (e.g. `ACTIVE`) and `sku_id`. - `colors` lists this product's other available colorways, each with its own `slug`/`style_color` pair for a follow-up lookup. - `is_buyable` reflects Nike's own purchasability flag for the requested color as a whole (distinct from individual `sizes[].status`). - An unknown `slug`/`style_color` combination returns `404`. - A malformed `slug` or `style_color` (not matching Nike's own id shape, e.g. `HQ2050-102`) returns `400` before any upstream request is made. ```json { "code": 200, "msg": "OK", "data": { "slug": "vomero-premium-mens-road-running-shoes-l11miwwa", "style_color": "HQ2050-102", "style_code": "HQ2050", "color_code": "102", "title": "Nike Vomero Premium", "subtitle": "Men's Road Running Shoes", "description": "Take maximum cushioning to the extreme in the Vomero Premium.", "reason_to_buy": "Maximum cushioning and dual Air Zoom units deliver an ultrasoft ride.", "color_description": "White/Green Spark/Summit White/Midnight Navy", "product_type": "FOOTWEAR", "genders": ["MEN"], "sport_tags": ["Running"], "currency": "USD", "price": 230, "initial_price": 230, "is_buyable": true, "images": ["https://static.nike.com/a/images/squarish-main.png"], "product_details": ["Weight: Approx. 351g/12.4 oz (Men's US 10)", "Heel-to-toe drop: 10 mm"], "sizes": [ {"label": "9", "localized_label": "M 9 / W 10.5", "status": "ACTIVE", "sku_id": "sku-9"} ], "colors": [ {"slug": "vomero-premium-mens-road-running-shoes-l11miwwa", "style_color": "HQ2050-101", "color_description": "White/Total Orange/Laser Orange/Lapis", "image_url": "https://static.nike.com/a/images/squarish-101.png", "url": "https://www.nike.com/t/vomero-premium-mens-road-running-shoes-l11miwwa/HQ2050-101"} ], "url": "https://www.nike.com/t/vomero-premium-mens-road-running-shoes-l11miwwa/HQ2050-102" } } ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
Request schema
No body schema
Response schema
#/definitions/nike.productResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | nike.ProductDetailResponse | No | ||||
| data.color_code | string | No | ||||
| data.color_description | string | No | ||||
| data.colors | array | No | ||||
| data.colors[].color_description | string | No | ||||
| data.colors[].color_label | string | No | ||||
| data.colors[].currency | string | No | ||||
| data.colors[].discount_percentage | integer | No | ||||
| data.colors[].image_url | string | No | ||||
| data.colors[].initial_price | number | No | ||||
| data.colors[].price | number | No | ||||
| data.colors[].slug | string | No | ||||
| data.colors[].style_color | string | No | ||||
| data.colors[].url | string | No | ||||
| data.currency | string | No | ||||
| data.description | string | No | ||||
| data.discount_percentage | integer | No | ||||
| data.fetched_at | string | No | ||||
| data.genders | array | No | ||||
| data.images | array | No | ||||
| data.initial_price | number | No | ||||
| data.is_buyable | boolean | No | ||||
| data.price | number | No | ||||
| data.product_details | array | No | ||||
| data.product_type | string | No | ||||
| data.reason_to_buy | string | No | ||||
| data.sizes | array | No | ||||
| data.sizes[].label | string | No | ||||
| data.sizes[].localized_label | string | No | ||||
| data.sizes[].sku_id | string | No | ||||
| data.sizes[].status | string | No | ||||
| data.slug | string | No | ||||
| data.source_url | string | No | ||||
| data.sport_tags | array | No | ||||
| data.style_code | string | No | ||||
| data.style_color | string | No | ||||
| data.subtitle | string | No | ||||
| data.title | string | No | ||||
| data.url | string | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/nike/product" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms