Endpoint Playground
Test Crawlora's Get an IKEA store's detail 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/store?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | Yes | IKEA store URL slug | |
| 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": {
"store": {
"slug": "burbank",
"name": "IKEA Burbank",
"url": "https://www.ikea.com/us/en/stores/burbank/",
"address": {
"street": "600 South IKEA Way",
"city": "Burbank",
"postal_code": "91502",
"country": "US"
},
"geo": {
"latitude": 34.1745,
"longitude": -118.3032
},
"price_range": "$$",
"hours": [
{
"days": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Sunday"
],
"opens": "10:00",
"closes": "21:00"
},
{
"days": [
"Friday",
"Saturday"
],
"opens": "10:00",
"closes": "22:00"
}
]
}
}
}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 physical location's full detail: address, geo coordinates, opening hours, and price range. slug is IKEA's own store URL slug, taken from an ikea_stores result's own slug field. Geo, hours, and price range are only present for full/small stores; order points and pick-up-only points return address only.
{
"code": 200,
"msg": "OK",
"data": {
"store": {
"slug": "burbank",
"name": "IKEA Burbank",
"url": "https://www.ikea.com/us/en/stores/burbank/",
"address": {
"street": "600 South IKEA Way",
"city": "Burbank",
"postal_code": "91502",
"country": "US"
},
"geo": {
"latitude": 34.1745,
"longitude": -118.3032
},
"price_range": "$$",
"hours": [
{
"days": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Sunday"
],
"opens": "10:00",
"closes": "21:00"
},
{
"days": [
"Friday",
"Saturday"
],
"opens": "10:00",
"closes": "22:00"
}
]
}
}
}curl "https://api.crawlora.net/api/v1/ikea/store?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"