Endpoint Playground
Test Crawlora's IKEA Search Suggestions 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/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| 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) |
{
"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"
}
]
}
}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 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.
{
"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"
}
]
}
}curl "https://api.crawlora.net/api/v1/ikea/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"