Endpoint Playground
Test Crawlora's Hermès category 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/hermes/category?category=<category>&sort=relevance&locale=at_de" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | Yes | Hermès category code, from hermes-categories | |
| sort | string | No | relevance | Result order. One of: relevance, priceasc, pricedsc. Non-default sorts are best-effort |
| locale | string | No | at_de | Market and language. One of: at_de, au_en, be_en, be_fr, br_pt, ca_en, ca_fr, ch_de, ch_fr, cz_en, de_de, dh_en, dk_en, es_es, fi_en, fr_fr, gr_en, hk_en, ie_en, it_it, jp_ja, kr_ko, lu_fr, mo_en, mx_es, my_en, nl_en, no_en, pl_en, pt_en, ri_en, se_en, sg_en, th_en, tw_zh, uk_en, us_en |
| page | integer | No | One-based result page; page size is fixed at 48. Page 1 is fully validated; pages beyond 1 are best-effort and provisional |
{
"code": 200,
"msg": "ok",
"data": {
"locale": "us_en",
"code": "WOMEN_SHOES_SNEAKERS",
"name": "Sneakers",
"title": "Women's leather sneakers & trainers",
"description": "Explore all styles of women's sneakers...",
"path": "/us/en/category/women/shoes/sneakers/",
"url": "https://www.hermes.com/us/en/category/women/shoes/sneakers/",
"total": 100,
"page": 1,
"page_size": 48,
"products": [
{
"sku": "H252013Z BM360",
"title": "Jet sneaker",
"url": "https://www.hermes.com/us/en/product/jet-sneaker-H252013ZvBM/",
"slug": "jet-sneaker",
"price": 1300,
"currency": "USD",
"price_type": "fixed",
"color": "Blue",
"colorless": false,
"more_colors": false,
"size": "36",
"product_code": "Z857",
"department_code": "Z",
"family_code": "Z01",
"division_code": "02",
"in_stock": true,
"in_store": false,
"personalizable": false,
"images": [
"https://assets.hermes.com/is/image/hermesproduct/252013Z%20BM_front_wm_1"
]
}
],
"filters": [
{
"name": "Line",
"attribute": "display_name",
"values": [
{
"name": "Jet",
"value": "jet",
"count": 20
}
]
}
]
}
}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.
Browses one Hermès product category and returns a page of normalized products (SKU, title, price with currency, colour, size, stock, images) plus the facet groups Hermès offers for that category, and the category's own title and description. The category parameter takes a category code from hermes-categories, which is the discovery endpoint for every accepted value. Page size is fixed at 48 by Hermès and cannot be changed. Prices are returned with the ISO-4217 currency for the selected market, since Hermès itself publishes bare numbers.
{
"code": 200,
"msg": "ok",
"data": {
"locale": "us_en",
"code": "WOMEN_SHOES_SNEAKERS",
"name": "Sneakers",
"title": "Women's leather sneakers & trainers",
"description": "Explore all styles of women's sneakers...",
"path": "/us/en/category/women/shoes/sneakers/",
"url": "https://www.hermes.com/us/en/category/women/shoes/sneakers/",
"total": 100,
"page": 1,
"page_size": 48,
"products": [
{
"sku": "H252013Z BM360",
"title": "Jet sneaker",
"url": "https://www.hermes.com/us/en/product/jet-sneaker-H252013ZvBM/",
"slug": "jet-sneaker",
"price": 1300,
"currency": "USD",
"price_type": "fixed",
"color": "Blue",
"colorless": false,
"more_colors": false,
"size": "36",
"product_code": "Z857",
"department_code": "Z",
"family_code": "Z01",
"division_code": "02",
"in_stock": true,
"in_store": false,
"personalizable": false,
"images": [
"https://assets.hermes.com/is/image/hermesproduct/252013Z%20BM_front_wm_1"
]
}
],
"filters": [
{
"name": "Line",
"attribute": "display_name",
"values": [
{
"name": "Jet",
"value": "jet",
"count": 20
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/hermes/category?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"