Endpoint Playground
Test Crawlora's H&M Category Navigation 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/hm/categories?department=women" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| department | string | No | women | Filter to one storefront department |
{
"code": 200,
"data": {
"categories": [
{
"category_id": "sample-id",
"department": "sample",
"name": "sample",
"section": "sample",
"url": "https://example.com/resource"
}
],
"fetched_at": "sample",
"source_url": "https://example.com/resource"
},
"msg": "OK"
}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 H&M's own storefront category navigation, department by department: every direct nav item and subcategory currently shown in the site's own menu, with its display name and storefront URL. Where this build has separately verified the value against hm-listing's own category_id parameter, that id is included too; category_id is omitted for entries not yet verified rather than guessed, since the visible category label is confirmed NOT a reliable way to derive H&M's real listing category ids for every category. department, when given, filters the result to one department.
{
"code": 200,
"data": {
"categories": [
{
"category_id": "sample-id",
"department": "sample",
"name": "sample",
"section": "sample",
"url": "https://example.com/resource"
}
],
"fetched_at": "sample",
"source_url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/hm/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"