Endpoint Playground
Test Crawlora's H&M Category Listing 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/listing?category_id=<category_id>&sort=RELEVANCE" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category_id | string | Yes | H&M category slug | |
| page | integer | No | Page number, one-based, defaults to 1 | |
| page_size | integer | No | Results per page, 1 to 72, defaults to 36 | |
| sort | string | No | RELEVANCE | Sort order, defaults to RELEVANCE |
| is_new | boolean | No | Optional filter for newly added items only |
{
"code": 200,
"data": {
"category_id": "sample-id",
"count": 1,
"fetched_at": "sample",
"is_new": true,
"page": 1,
"page_size": 1,
"products": [
{
"availability": "sample",
"brand": "sample",
"category_code": "sample",
"colors": [
{
"article_id": "sample-id",
"color_code": "sample",
"image_url": "https://example.com/resource",
"name": "sample",
"url": "https://example.com/resource"
}
],
"coming_soon": true,
"currency": "sample",
"formatted_price": "sample",
"id": "sample-id",
"image_url": "https://example.com/resource",
"model_image_url": "https://example.com/resource",
"name": "sample",
"new_arrival": true,
"price": 1.23,
"sizes": [
{
"id": "sample-id",
"label": "sample",
"stock": 1
}
],
"url": "https://example.com/resource"
}
],
"sort": "sample",
"source_url": "https://example.com/resource",
"total_hits": 1,
"total_pages": 1
},
"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 one H&M category's product listing page: normalized products with pricing, images, colors, and per-size stock, sourced from H&M's own app-backend listing data. category_id is an H&M category slug (e.g. ladies_newarrivals_all, men_newarrivals_all, ladies_jeans) -- this build does not expose a category/nav-tree discovery endpoint, so category_id values are currently sourced from known H&M storefront paths rather than a lookup call. Pagination is page-based and real: requesting a page beyond the category's real last page returns a normal response with an empty products array rather than an error.
{
"code": 200,
"data": {
"category_id": "sample-id",
"count": 1,
"fetched_at": "sample",
"is_new": true,
"page": 1,
"page_size": 1,
"products": [
{
"availability": "sample",
"brand": "sample",
"category_code": "sample",
"colors": [
{
"article_id": "sample-id",
"color_code": "sample",
"image_url": "https://example.com/resource",
"name": "sample",
"url": "https://example.com/resource"
}
],
"coming_soon": true,
"currency": "sample",
"formatted_price": "sample",
"id": "sample-id",
"image_url": "https://example.com/resource",
"model_image_url": "https://example.com/resource",
"name": "sample",
"new_arrival": true,
"price": 1.23,
"sizes": [
{
"id": "sample-id",
"label": "sample",
"stock": 1
}
],
"url": "https://example.com/resource"
}
],
"sort": "sample",
"source_url": "https://example.com/resource",
"total_hits": 1,
"total_pages": 1
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/hm/listing?category_id=<category_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"