Endpoint Playground
Test Crawlora's Get Nike product reviews 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/reviews?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 | |
| page | integer | No | One-based page number, defaults to 1 |
{
"code": 200,
"data": {
"average_rating": 1.23,
"count": 1,
"fetched_at": "sample",
"page": 1,
"page_size": 1,
"rating_histogram": [
1
],
"reviews": [
{
"author": "sample",
"body": "sample",
"created_at": "sample",
"headline": "sample",
"helpful_votes": 1,
"id": "sample-id",
"location": "sample",
"not_helpful_votes": 1,
"rating": 1,
"recommended": true
}
],
"slug": "sample",
"source_url": "https://example.com/resource",
"style_color": "sample",
"total_pages": 1,
"total_reviews": 1
},
"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 one page of a Nike product's normalized customer reviews, plus an aggregate rating summary (average rating and a per-star rating breakdown) that Nike's own product-detail endpoint does not otherwise expose. slug and style_color are the same values nike-product accepts (from a search result's colors[].slug/colors[].style_color fields). A product with no reviews yet returns a well-formed empty result rather than an error. Requesting a page beyond the available result pages returns a not-found error.
{
"code": 200,
"data": {
"average_rating": 1.23,
"count": 1,
"fetched_at": "sample",
"page": 1,
"page_size": 1,
"rating_histogram": [
1
],
"reviews": [
{
"author": "sample",
"body": "sample",
"created_at": "sample",
"headline": "sample",
"helpful_votes": 1,
"id": "sample-id",
"location": "sample",
"not_helpful_votes": 1,
"rating": 1,
"recommended": true
}
],
"slug": "sample",
"source_url": "https://example.com/resource",
"style_color": "sample",
"total_pages": 1,
"total_reviews": 1
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/nike/product/reviews?slug=<slug>&style_color=<style_color>" \
-H "x-api-key: $CRAWLORA_API_KEY"