IKEA API endpoint
Use Crawlora's Get an IKEA product's detail API to extract supported public IKEA data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/ikea/productReturns 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. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| 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 | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/ikea/product?country=us&language=en" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"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"
}
]
}
}
}Request schema
No body schema
Response schema
#/definitions/ikea.productResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | ikea.ProductResponse | No | ||||
| data.fetched_at | string | No | ||||
| data.product | ikea.Product | No | ||||
| data.product.category_path | array | No | ||||
| data.product.category_path[].key | string | No | 20649 | |||
| data.product.category_path[].name | string | No | Desks & computer desks | |||
| data.product.colors | array | No | ||||
| data.product.colors[].hex | string | No | ffffff | |||
| data.product.colors[].id | string | No | 10156 | |||
| data.product.colors[].name | string | No | white | |||
| data.product.filter_class | string | No | desks | FilterClass is IKEA's own product-type slug, e.g. "desks" -- usable as a coarse category signal, though it is not currently accepted back as a category-browse filter by this endpoint (see this package's doc comment). | ||
| data.product.image_url | string | No | ||||
| data.product.images | array | No | ||||
| data.product.images[].alt_text | string | No | ||||
| data.product.images[].type | string | No | MAIN_PRODUCT_IMAGE | |||
| data.product.images[].url | string | No | ||||
| data.product.item_no | string | No | 80213074 | |||
| data.product.measure_text | string | No | 41 3/8x19 5/8 " | |||
| data.product.name | string | No | MICKE | |||
| data.product.price | ikea.Price | No | ||||
| data.product.price.currency_code | string | No | USD | |||
| data.product.price.current | number | No | 99.99 | |||
| data.product.price.discount_amount | number | No | 15.01 | |||
| data.product.price.discount_percentage | number | No | 15 | |||
| data.product.price.formatted | string | No | $99.99 | |||
| data.product.price.previous | number | No | 95 | |||
| data.product.price.previous_formatted | string | No | $95.00 | |||
| data.product.price.tag | string | No | FAMILY_PRICE | Tag is IKEA's own price-badge code, e.g. "FAMILY_PRICE" for an IKEA Family member price. TagText is its human-readable label, e.g. "IKEA Family price". | ||
| data.product.price.tag_text | string | No | IKEA Family price | |||
| data.product.price.valid_from | string | No | 2026-08-03 | |||
| data.product.price.valid_to | string | No | 2026-09-07 | |||
| data.product.product_url | string | No | ||||
| data.product.quick_facts | array | No | ||||
| data.product.quick_facts[].name | string | No | Firm | |||
| data.product.quick_facts[].type_name | string | No | Firmness | |||
| data.product.rating | ikea.Rating | No | ||||
| data.product.rating.count | integer | No | 6367 | |||
| data.product.rating.value | number | No | 4.5 | |||
| data.product.type_name | string | No | Desk | |||
| data.product.valid_design | string | No | white | ValidDesign is IKEA's own color/finish descriptor for this exact item, e.g. "white" or "black-brown" -- the design this specific item number represents, as opposed to Colors below (every color swatch shown for the product family). | ||
| data.product.variant_count | integer | No | 3 | VariantCount is the total number of other purchasable size/color/design options this product has, which may exceed len(Variants) -- the search endpoint's own gprDescription block does not always enumerate every variant. | ||
| data.product.variants | array | No | ||||
| data.product.variants[].image_url | string | No | ||||
| data.product.variants[].item_no | string | No | 10244743 | |||
| data.product.variants[].name | string | No | MICKE | |||
| data.product.variants[].price | ikea.Price | No | ||||
| data.product.variants[].price.currency_code | string | No | USD | |||
| data.product.variants[].price.current | number | No | 99.99 | |||
| data.product.variants[].price.discount_amount | number | No | 15.01 | |||
| data.product.variants[].price.discount_percentage | number | No | 15 | |||
| data.product.variants[].price.formatted | string | No | $99.99 | |||
| data.product.variants[].price.previous | number | No | 95 | |||
| data.product.variants[].price.previous_formatted | string | No | $95.00 | |||
| data.product.variants[].price.tag | string | No | FAMILY_PRICE | Tag is IKEA's own price-badge code, e.g. "FAMILY_PRICE" for an IKEA Family member price. TagText is its human-readable label, e.g. "IKEA Family price". | ||
| data.product.variants[].price.tag_text | string | No | IKEA Family price | |||
| data.product.variants[].price.valid_from | string | No | 2026-08-03 | |||
| data.product.variants[].price.valid_to | string | No | 2026-09-07 | |||
| data.product.variants[].product_url | string | No | ||||
| data.product.variants[].rating | ikea.Rating | No | ||||
| data.product.variants[].rating.count | integer | No | 6367 | |||
| data.product.variants[].rating.value | number | No | 4.5 | |||
| data.product.variants[].type_name | string | No | Desk | |||
| data.product.variants[].valid_design | string | No | black-brown | |||
| data.source_url | string | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/ikea/product?country=us&language=en" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms