Endpoint Playground
Test Crawlora's List IKEA physical store locations 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/stores" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| 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": {
"country": "us",
"language": "en",
"count": 90,
"stores": [
{
"slug": "burbank",
"name": "IKEA Burbank, CA",
"region": "Los Angeles Area & Southern California",
"location_type": "Store",
"url": "https://www.ikea.com/us/en/stores/burbank/"
}
]
}
}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 directory of physical locations for the requested country: name, URL slug, region grouping, and location type (Store, Small store, Plan & order point with pick-up, etc). Each slug is usable directly as ikea_store's own slug input.
{
"code": 200,
"msg": "OK",
"data": {
"country": "us",
"language": "en",
"count": 90,
"stores": [
{
"slug": "burbank",
"name": "IKEA Burbank, CA",
"region": "Los Angeles Area & Southern California",
"location_type": "Store",
"url": "https://www.ikea.com/us/en/stores/burbank/"
}
]
}
}curl "https://api.crawlora.net/api/v1/ikea/stores" \
-H "x-api-key: $CRAWLORA_API_KEY"