Endpoint Playground
Test Crawlora's Hermès catalogue index 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/products?locale=at_de" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| 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 | |
| limit | integer | No | Results per page, 1-500 | |
| changed_since | string | No | Return only products last modified on or after this YYYY-MM-DD date |
{
"code": 200,
"msg": "ok",
"data": {
"locale": "us_en",
"total": 4082,
"page": 1,
"limit": 100,
"products": [
{
"product_id": "H000044Ev01M",
"slug": "chut-iii-anti-noise-bonnet",
"url": "https://www.hermes.com/us/en/product/chut-iii-anti-noise-bonnet-H000044Ev01M/",
"last_modified": "2026-09-07"
}
]
}
}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 Hermès' full catalogue index for one market: each product's URL, slug, URL identifier and the date Hermès last modified it. Built from Hermès' own product sitemap, so it enumerates the entire catalogue for that market including items no category listing surfaces. Use changed_since to return only products added or updated on or after a date, which makes this a new-arrivals feed. The product_id is the identifier used in the product URL and is NOT the same string as the sku returned by hermes-category and hermes-search, which also encodes size.
{
"code": 200,
"msg": "ok",
"data": {
"locale": "us_en",
"total": 4082,
"page": 1,
"limit": 100,
"products": [
{
"product_id": "H000044Ev01M",
"slug": "chut-iii-anti-noise-bonnet",
"url": "https://www.hermes.com/us/en/product/chut-iii-anti-noise-bonnet-H000044Ev01M/",
"last_modified": "2026-09-07"
}
]
}
}curl "https://api.crawlora.net/api/v1/hermes/products" \
-H "x-api-key: $CRAWLORA_API_KEY"