Endpoint Playground
Test Crawlora's IKEA Stock Availability 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/availability?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 |
{
"code": 200,
"msg": "OK",
"data": {
"item_no": "80213074",
"country": "us",
"available_for_home_delivery": true,
"available_for_click_collect": true,
"home_delivery": {
"in_range": true,
"message_type": "HIGH_IN_STOCK",
"updated_at": "2026-08-20T07:34:42.063Z"
},
"click_collect": {
"in_range": true
}
}
}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 real-time home-delivery and click-and-collect stock signal for the requested country. item_no is IKEA's own item number.
{
"code": 200,
"msg": "OK",
"data": {
"item_no": "80213074",
"country": "us",
"available_for_home_delivery": true,
"available_for_click_collect": true,
"home_delivery": {
"in_range": true,
"message_type": "HIGH_IN_STOCK",
"updated_at": "2026-08-20T07:34:42.063Z"
},
"click_collect": {
"in_range": true
}
}
}curl "https://api.crawlora.net/api/v1/ikea/availability?item_no=<item_no>" \
-H "x-api-key: $CRAWLORA_API_KEY"