Endpoint Playground
Test Crawlora's Get Nike product recommendations 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/recommendations?style_color=<style_color>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| style_color | string | Yes | Anchor product's style-color id, from a search result's colors[].style_color field |
{
"code": 200,
"msg": "OK",
"data": {
"style_color": "HQ2050-102",
"count": 10,
"recommendations": [
{
"style_color": "IR2984-100",
"rank": 1,
"title": "Nike Vomero Plus",
"subtitle": "Men's Road Running Shoes",
"image_url": "https://static.nike.com/a/images/...",
"url": "https://www.nike.com/t/vomero-plus-mens-road-running-shoes-5npsVBwT/IR2984-100",
"currency": "USD",
"price": 144.97,
"initial_price": 180,
"price_type": "MARKDOWN",
"style_type": "INLINE"
}
]
}
}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 Nike's own related-product ("Shop Similar") recommendations for one product, sourced from the same anonymous mobile backend Nike's own app uses. style_color is the anchor product's style-color id (from a search result's colors[].style_color field). Each recommendation carries the product's style-color, rank, title/subtitle, image, PDP URL, and current pricing. Recommendations are Nike's own ranking, not a guaranteed keyword match: an unrecognized style_color returns Nike's fallback recommendations rather than an empty list or an error.
{
"code": 200,
"msg": "OK",
"data": {
"style_color": "HQ2050-102",
"count": 10,
"recommendations": [
{
"style_color": "IR2984-100",
"rank": 1,
"title": "Nike Vomero Plus",
"subtitle": "Men's Road Running Shoes",
"image_url": "https://static.nike.com/a/images/...",
"url": "https://www.nike.com/t/vomero-plus-mens-road-running-shoes-5npsVBwT/IR2984-100",
"currency": "USD",
"price": 144.97,
"initial_price": 180,
"price_type": "MARKDOWN",
"style_type": "INLINE"
}
]
}
}curl "https://api.crawlora.net/api/v1/nike/product/recommendations?style_color=<style_color>" \
-H "x-api-key: $CRAWLORA_API_KEY"