Endpoint Playground
Test Crawlora's Get Adidas 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/adidas/product/reviews?model_number=<model_number>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| model_number | string | Yes | Adidas model number, from an adidas_search result's products[].model_number field | |
| locale | string | No | Locale for the review-summary language, the secondary-rating scale labels, and the language of the reviews returned. Allowed values: cs_CZ, da_DK, de_AT, de_CH, de_DE, el_GR, en_AE, en_AU, en_CA, en_GB, en_IE, en_IL, en_IN, en_NZ, en_PH, en_SG, en_US, en_ZA, es_AR, es_CL, es_CO, es_ES, es_MX, es_PE, fr_BE, fr_CA, fr_CH, fr_FR, id_ID, it_CH, it_IT, ja_JP, ko_KR, nl_BE, nl_NL, pl_PL, pt_BR, pt_PT, ru_RU, sk_SK, sv_SE, th_TH, tr_TR, zh_HK, zh_TW. Defaults to en_US. | |
| rating | integer | No | Return only reviews with this star rating. Allowed values: 1, 2, 3, 4, 5. Omitted returns every rating. | |
| topic | string | No | Return only reviews about one topic. Valid values are per-model -- read them from /adidas/product/review-topics for the same model_number (commonly satisfaction, comfort, color, purchase, fit, appearance, quality, style). An unrecognized topic returns a 400 listing the model's own topics. | |
| page | integer | No | One-based page number, 10 reviews per page, defaults to 1 |
{
"code": 200,
"msg": "OK",
"data": {
"model_number": "SAMBAU2312",
"locale": "en_US",
"page": 1,
"page_size": 10,
"total_pages": 338,
"total_reviews": 3371,
"count": 1,
"rating_count": 3371,
"overall_rating": 4.8,
"recommended_percentage": 97,
"rating_histogram": [
62,
22,
50,
223,
3014
],
"secondary_ratings": [
{
"name": "Size",
"label": "Size",
"average_rating": 3.06,
"value_range": 5,
"min_label": "Too small",
"mid_label": "Perfect",
"max_label": "Too large"
}
],
"summary": {
"text": "* Customers consistently praise all-day comfort and lightweight feel",
"title": "REVIEW_SUMMARY",
"type": "TEXT",
"detail": "BULLET_FORMAT_SUMMARY",
"disclaimer": "This summary is generated by artificial intelligence based on customer reviews."
},
"source_url": "https://www.adidas.com/api/models/SAMBAU2312/reviews?bazaarVoiceLocale=en_US&includeLocales=en%2A&limit=10&offset=0",
"ratings_source_url": "https://www.adidas.com/api/models/SAMBAU2312/ratings?bazaarVoiceLocale=en_US",
"fetched_at": "2026-09-05T13:45:00Z",
"reviews": [
{
"id": "184365254",
"rating": 5,
"rating_range": 5,
"headline": "A must for your wardrobe",
"body": "I love the color and the snakeskin design. I've gotten so many compliments on them.",
"author": "LizD74",
"color": "Focus Olive / Off White / Gum",
"locale": "en_US",
"recommended": true,
"badges": [
"IncentivizedReview"
],
"submitted_at": "2026-09-05T03:58:39Z",
"submitted_date": "September 5, 2026"
}
]
}
}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 customer reviews for an Adidas product model, plus the model's rating summary: overall rating, star histogram, percentage of reviewers who recommend it, per-attribute averages (Size, Width, Comfort, Quality with their own scale labels), and Adidas's AI-generated review digest when one exists. Each review carries the rating, headline, body, author nickname, purchased colorway, helpful/not-helpful vote counts, badges, customer photos, and submission time. model_number is the Adidas model number (e.g. SAMBAU2312) -- NOT the SKU: take it from an adidas_search result's products[].model_number field, which is a different value from products[].id. Reviews are returned 10 per page. Reviews are scoped to review text written in the requested locale's language, and most of the US catalog's reviews are English, so a non-English locale commonly returns rating statistics and a localized summary with an empty reviews list. A model with no reviews -- including a well-formed but unrecognized model_number -- returns an empty reviews list rather than an error, because Adidas answers 200 with a zero count rather than 404.
{
"code": 200,
"msg": "OK",
"data": {
"model_number": "SAMBAU2312",
"locale": "en_US",
"page": 1,
"page_size": 10,
"total_pages": 338,
"total_reviews": 3371,
"count": 1,
"rating_count": 3371,
"overall_rating": 4.8,
"recommended_percentage": 97,
"rating_histogram": [
62,
22,
50,
223,
3014
],
"secondary_ratings": [
{
"name": "Size",
"label": "Size",
"average_rating": 3.06,
"value_range": 5,
"min_label": "Too small",
"mid_label": "Perfect",
"max_label": "Too large"
}
],
"summary": {
"text": "* Customers consistently praise all-day comfort and lightweight feel",
"title": "REVIEW_SUMMARY",
"type": "TEXT",
"detail": "BULLET_FORMAT_SUMMARY",
"disclaimer": "This summary is generated by artificial intelligence based on customer reviews."
},
"source_url": "https://www.adidas.com/api/models/SAMBAU2312/reviews?bazaarVoiceLocale=en_US&includeLocales=en%2A&limit=10&offset=0",
"ratings_source_url": "https://www.adidas.com/api/models/SAMBAU2312/ratings?bazaarVoiceLocale=en_US",
"fetched_at": "2026-09-05T13:45:00Z",
"reviews": [
{
"id": "184365254",
"rating": 5,
"rating_range": 5,
"headline": "A must for your wardrobe",
"body": "I love the color and the snakeskin design. I've gotten so many compliments on them.",
"author": "LizD74",
"color": "Focus Olive / Off White / Gum",
"locale": "en_US",
"recommended": true,
"badges": [
"IncentivizedReview"
],
"submitted_at": "2026-09-05T03:58:39Z",
"submitted_date": "September 5, 2026"
}
]
}
}curl "https://api.crawlora.net/api/v1/adidas/product/reviews?model_number=<model_number>" \
-H "x-api-key: $CRAWLORA_API_KEY"