Endpoint Playground
Test Crawlora's Get a Nike product 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?slug=<slug>&style_color=<style_color>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| 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 |
{
"code": 200,
"data": {
"color_code": "sample",
"color_description": "sample",
"colors": [
{
"color_description": "sample",
"color_label": "sample",
"currency": "sample",
"discount_percentage": 1,
"image_url": "https://example.com/resource",
"initial_price": 1.23,
"price": 1.23,
"slug": "sample",
"style_color": "sample",
"url": "https://example.com/resource"
}
],
"currency": "sample",
"description": "sample",
"discount_percentage": 1,
"fetched_at": "sample",
"genders": [
"sample"
],
"images": [
"sample"
],
"initial_price": 1.23,
"is_buyable": true,
"price": 1.23,
"product_details": [
"sample"
],
"product_type": "sample",
"reason_to_buy": "sample",
"sizes": [
{
"label": "sample",
"localized_label": "sample",
"sku_id": "sample-id",
"status": "ok"
}
],
"slug": "sample",
"source_url": "https://example.com/resource",
"sport_tags": [
"sample"
],
"style_code": "sample",
"style_color": "sample",
"subtitle": "sample",
"title": "sample",
"url": "https://example.com/resource"
},
"msg": "OK"
}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 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.
{
"code": 200,
"data": {
"color_code": "sample",
"color_description": "sample",
"colors": [
{
"color_description": "sample",
"color_label": "sample",
"currency": "sample",
"discount_percentage": 1,
"image_url": "https://example.com/resource",
"initial_price": 1.23,
"price": 1.23,
"slug": "sample",
"style_color": "sample",
"url": "https://example.com/resource"
}
],
"currency": "sample",
"description": "sample",
"discount_percentage": 1,
"fetched_at": "sample",
"genders": [
"sample"
],
"images": [
"sample"
],
"initial_price": 1.23,
"is_buyable": true,
"price": 1.23,
"product_details": [
"sample"
],
"product_type": "sample",
"reason_to_buy": "sample",
"sizes": [
{
"label": "sample",
"localized_label": "sample",
"sku_id": "sample-id",
"status": "ok"
}
],
"slug": "sample",
"source_url": "https://example.com/resource",
"sport_tags": [
"sample"
],
"style_code": "sample",
"style_color": "sample",
"subtitle": "sample",
"title": "sample",
"url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/nike/product?slug=<slug>&style_color=<style_color>" \
-H "x-api-key: $CRAWLORA_API_KEY"