Endpoint Playground
Test Crawlora's Get an IKEA product's detail 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/product?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": {
"product": {
"item_no": "80213074",
"name": "MICKE",
"type_name": "Desk",
"measure_text": "41 3/8x19 5/8 \"",
"valid_design": "white",
"filter_class": "desks",
"image_url": "https://www.ikea.com/us/en/images/products/micke-desk-white__0736018_pe740345_s5.jpg",
"product_url": "https://www.ikea.com/us/en/p/micke-desk-white-80213074/",
"price": {
"current": 99.99,
"formatted": "$99.99",
"currency_code": "USD"
},
"rating": {
"value": 4.5,
"count": 6367
},
"colors": [
{
"name": "white",
"id": "10156",
"hex": "ffffff"
}
],
"variant_count": 3,
"images": [
{
"type": "MAIN_PRODUCT_IMAGE",
"url": "https://www.ikea.com/us/en/images/products/micke-desk-white__0736018_pe740345_s5.jpg"
}
],
"category_path": [
{
"key": "fu004",
"name": "Desks & desk chairs"
},
{
"key": "20649",
"name": "Desks & computer desks"
}
]
}
}
}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 full normalized detail: name, price, rating, every product image, quick facts, and category breadcrumb path. item_no is IKEA's own item number (8 digits, optionally prefixed with "s" for a combination/set article), taken from a search result's item_no field or an ikea.com product page's own URL.
{
"code": 200,
"msg": "OK",
"data": {
"product": {
"item_no": "80213074",
"name": "MICKE",
"type_name": "Desk",
"measure_text": "41 3/8x19 5/8 \"",
"valid_design": "white",
"filter_class": "desks",
"image_url": "https://www.ikea.com/us/en/images/products/micke-desk-white__0736018_pe740345_s5.jpg",
"product_url": "https://www.ikea.com/us/en/p/micke-desk-white-80213074/",
"price": {
"current": 99.99,
"formatted": "$99.99",
"currency_code": "USD"
},
"rating": {
"value": 4.5,
"count": 6367
},
"colors": [
{
"name": "white",
"id": "10156",
"hex": "ffffff"
}
],
"variant_count": 3,
"images": [
{
"type": "MAIN_PRODUCT_IMAGE",
"url": "https://www.ikea.com/us/en/images/products/micke-desk-white__0736018_pe740345_s5.jpg"
}
],
"category_path": [
{
"key": "fu004",
"name": "Desks & desk chairs"
},
{
"key": "20649",
"name": "Desks & computer desks"
}
]
}
}
}curl "https://api.crawlora.net/api/v1/ikea/product?item_no=<item_no>" \
-H "x-api-key: $CRAWLORA_API_KEY"