IKEA API endpoint
Use Crawlora's IKEA Search Suggestions 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/suggestReturns IKEA's own search-box typeahead result for a partial or full query: suggested query completions with their own match counts, plus a small number of top matching products. A query with no matches returns a clean empty response. 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 |
|---|---|---|---|---|---|
| q | string | Yes | Partial or full search term | ||
| country | string | No | Lowercase 2-letter IKEA site country code | ||
| language | string | No | Lowercase 2-letter IKEA site language code | ||
| size | integer | No | Top-product count (1-20) Minimum: 1. Maximum: 20. | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/ikea/suggest?q=coffee&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 |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"query": "des",
"country": "us",
"language": "en",
"count": 6,
"suggestions": [
{
"text": "dining table",
"count": 442
},
{
"text": "closet",
"count": 413
},
{
"text": "chair",
"count": 1452
},
{
"text": "desk",
"count": 203
},
{
"text": "bed frame",
"count": 151
}
],
"products": [
{
"item_no": "s49431927",
"name": "LAGKAPTEN / ALEX",
"type_name": "Desk"
},
{
"item_no": "80213074",
"name": "MICKE",
"type_name": "Desk"
}
]
}
}Request schema
No body schema
Response schema
#/definitions/ikea.suggestResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | ikea.SuggestResponse | No | ||||
| data.count | integer | No | 5 | |||
| data.country | string | No | us | |||
| data.fetched_at | string | No | ||||
| data.language | string | No | en | |||
| data.products | array | No | ||||
| data.products[].colors | array | No | ||||
| data.products[].colors[].hex | string | No | ffffff | |||
| data.products[].colors[].id | string | No | 10156 | |||
| data.products[].colors[].name | string | No | white | |||
| data.products[].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.products[].image_url | string | No | ||||
| data.products[].item_no | string | No | 80213074 | |||
| data.products[].measure_text | string | No | 41 3/8x19 5/8 " | |||
| data.products[].name | string | No | MICKE | |||
| data.products[].price | ikea.Price | No | ||||
| data.products[].price.currency_code | string | No | USD | |||
| data.products[].price.current | number | No | 99.99 | |||
| data.products[].price.discount_amount | number | No | 15.01 | |||
| data.products[].price.discount_percentage | number | No | 15 | |||
| data.products[].price.formatted | string | No | $99.99 | |||
| data.products[].price.previous | number | No | 95 | |||
| data.products[].price.previous_formatted | string | No | $95.00 | |||
| data.products[].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.products[].price.tag_text | string | No | IKEA Family price | |||
| data.products[].price.valid_from | string | No | 2026-08-03 | |||
| data.products[].price.valid_to | string | No | 2026-09-07 | |||
| data.products[].product_url | string | No | ||||
| data.products[].rating | ikea.Rating | No | ||||
| data.products[].rating.count | integer | No | 6367 | |||
| data.products[].rating.value | number | No | 4.5 | |||
| data.products[].type_name | string | No | Desk | |||
| data.products[].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.products[].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.products[].variants | array | No | ||||
| data.products[].variants[].image_url | string | No | ||||
| data.products[].variants[].item_no | string | No | 10244743 | |||
| data.products[].variants[].name | string | No | MICKE | |||
| data.products[].variants[].price | ikea.Price | No | ||||
| data.products[].variants[].price.currency_code | string | No | USD | |||
| data.products[].variants[].price.current | number | No | 99.99 | |||
| data.products[].variants[].price.discount_amount | number | No | 15.01 | |||
| data.products[].variants[].price.discount_percentage | number | No | 15 | |||
| data.products[].variants[].price.formatted | string | No | $99.99 | |||
| data.products[].variants[].price.previous | number | No | 95 | |||
| data.products[].variants[].price.previous_formatted | string | No | $95.00 | |||
| data.products[].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.products[].variants[].price.tag_text | string | No | IKEA Family price | |||
| data.products[].variants[].price.valid_from | string | No | 2026-08-03 | |||
| data.products[].variants[].price.valid_to | string | No | 2026-09-07 | |||
| data.products[].variants[].product_url | string | No | ||||
| data.products[].variants[].rating | ikea.Rating | No | ||||
| data.products[].variants[].rating.count | integer | No | 6367 | |||
| data.products[].variants[].rating.value | number | No | 4.5 | |||
| data.products[].variants[].type_name | string | No | Desk | |||
| data.products[].variants[].valid_design | string | No | black-brown | |||
| data.query | string | No | des | |||
| data.source_url | string | No | ||||
| data.suggestions | array | No | ||||
| data.suggestions[].count | integer | No | 48 | |||
| data.suggestions[].text | string | No | desk chair | |||
| 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/suggest?q=coffee&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