Endpoint Playground
Test Crawlora's Discover IKEA category keys 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/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Case-insensitive substring filter on category name | |
| country | string | No | Lowercase 2-letter IKEA site country code | |
| language | string | No | Lowercase 2-letter IKEA site language code | |
| page | integer | No | 1-based page number | |
| page_size | integer | No | Result count per page (1-1000) |
{
"code": 200,
"msg": "OK",
"data": {
"total": 929,
"page": 1,
"page_size": 100,
"has_next": true,
"country": "us",
"language": "en",
"categories": [
{
"key": "st001",
"name": "Storage & organization",
"level": 1,
"url": "https://www.ikea.com/us/en/cat/storage-organization-st001/"
},
{
"key": "20649",
"name": "Desks & computer desks",
"parent_key": "fu004",
"level": 2,
"url": "https://www.ikea.com/us/en/cat/desks-computer-desks-20649/"
}
],
"source_url": "https://www.ikea.com/us/en/navigation/catalog-products-slim.json",
"fetched_at": "2026-09-16T00:00:00Z"
}
}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 a page of IKEA's full category taxonomy, sourced from IKEA's own site navigation data: every top-level department and nested subcategory, with the key each one uses as ikea_category's own category input. key is IKEA's own category key (numeric, e.g. 20649, or a short alphanumeric department code, e.g. st001). parent_key is the immediate parent category's own key (empty for a top-level department); level is depth in the taxonomy tree, starting at 1. q optionally filters by a case-insensitive substring of name.
{
"code": 200,
"msg": "OK",
"data": {
"total": 929,
"page": 1,
"page_size": 100,
"has_next": true,
"country": "us",
"language": "en",
"categories": [
{
"key": "st001",
"name": "Storage & organization",
"level": 1,
"url": "https://www.ikea.com/us/en/cat/storage-organization-st001/"
},
{
"key": "20649",
"name": "Desks & computer desks",
"parent_key": "fu004",
"level": 2,
"url": "https://www.ikea.com/us/en/cat/desks-computer-desks-20649/"
}
],
"source_url": "https://www.ikea.com/us/en/navigation/catalog-products-slim.json",
"fetched_at": "2026-09-16T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/ikea/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"