Endpoint Playground
Test Crawlora's IKEA 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/ikea/reviews?item_no=<item_no>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| item_no | string | Yes | IKEA item number | |
| country | string | No | Lowercase 2-letter IKEA site country code | |
| language | string | No | Lowercase 2-letter IKEA site language code |
{
"code": 200,
"msg": "OK",
"data": {
"item_no": "80213074",
"average_rating": 4.5,
"rating_count": 6367,
"count": 3,
"reviews": [
{
"title": "Great buy",
"rating": 5,
"text": "I bought this a few years ago to use while I was in school and now I put a mirror on it to convert it to my vanity. Great quality!",
"author": "Alexis",
"author_country": "United States"
}
]
}
}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 IKEA item's own highlighted customer reviews (title, rating, text, author) plus its aggregate rating, sourced from the product page's own curated reviews carousel. This is a small, representative set of reviews (a handful per item), not the full paginated review list.
{
"code": 200,
"msg": "OK",
"data": {
"item_no": "80213074",
"average_rating": 4.5,
"rating_count": 6367,
"count": 3,
"reviews": [
{
"title": "Great buy",
"rating": 5,
"text": "I bought this a few years ago to use while I was in school and now I put a mirror on it to convert it to my vanity. Great quality!",
"author": "Alexis",
"author_country": "United States"
}
]
}
}curl "https://api.crawlora.net/api/v1/ikea/reviews?item_no=<item_no>" \
-H "x-api-key: $CRAWLORA_API_KEY"