Endpoint Playground
Test Crawlora's Get Nike product size availability 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/availability?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",
"count": 365,
"sizes": [
{
"label": "6",
"localized_label": "M 6 / W 7.5",
"style_color": "HV8150-003",
"gtin": "00198481532179",
"available": true,
"ship": "HIGH",
"grouping_label": "Regular"
}
]
}
}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 per-size shipping availability for one product, sourced from the same anonymous mobile backend Nike's own app uses. group_key is the product's rollup key (from a search result's products[].group_key field). Each size carries its label, localized label, the color variant it belongs to, a GTIN, an available flag, Nike's own shipping-availability level (HIGH/LOW/MEDIUM/OOS), and the width grouping (Regular/Wide). Per-store pickup availability is not included -- this reflects online shipping availability.
{
"code": 200,
"msg": "OK",
"data": {
"group_key": "5npsVBwT",
"count": 365,
"sizes": [
{
"label": "6",
"localized_label": "M 6 / W 7.5",
"style_color": "HV8150-003",
"gtin": "00198481532179",
"available": true,
"ship": "HIGH",
"grouping_label": "Regular"
}
]
}
}curl "https://api.crawlora.net/api/v1/nike/product/availability?group_key=<group_key>" \
-H "x-api-key: $CRAWLORA_API_KEY"