Endpoint Playground
Test Crawlora's Hermès search 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/search?query=<query>&locale=at_de" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Search keyword | |
| 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",
"query": "scarf",
"total": 1078,
"page": 1,
"page_size": 48,
"products": [
{
"sku": "H004368S 04",
"title": "La Nature en Voyage scarf 90",
"url": "https://www.hermes.com/us/en/product/la-nature-en-voyage-scarf-90-H004368Sv04/",
"slug": "la-nature-en-voyage-scarf-90",
"price": 505,
"currency": "USD",
"price_type": "fixed",
"color": "Blue",
"colorless": false,
"more_colors": true,
"size": "",
"product_code": "S1A1",
"department_code": "S",
"family_code": "S01",
"division_code": "01",
"in_stock": true,
"in_store": false,
"personalizable": false,
"images": [
"https://assets.hermes.com/is/image/hermesproduct/004368S%2004_front_wm_1"
]
}
],
"filters": []
}
}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.
Searches the Hermès catalogue by keyword and returns a page of normalized products in the same shape as hermes-category. A query Hermès has no match for returns total 0 with an empty products array: Hermès itself renders unrelated fallback recommendations on a no-results page, and those are deliberately not returned as results. When Hermès applies its own spelling correction the corrected term is reported in results_for. Page size is fixed at 48 by Hermès and cannot be changed.
{
"code": 200,
"msg": "ok",
"data": {
"locale": "us_en",
"query": "scarf",
"total": 1078,
"page": 1,
"page_size": 48,
"products": [
{
"sku": "H004368S 04",
"title": "La Nature en Voyage scarf 90",
"url": "https://www.hermes.com/us/en/product/la-nature-en-voyage-scarf-90-H004368Sv04/",
"slug": "la-nature-en-voyage-scarf-90",
"price": 505,
"currency": "USD",
"price_type": "fixed",
"color": "Blue",
"colorless": false,
"more_colors": true,
"size": "",
"product_code": "S1A1",
"department_code": "S",
"family_code": "S01",
"division_code": "01",
"in_stock": true,
"in_store": false,
"personalizable": false,
"images": [
"https://assets.hermes.com/is/image/hermesproduct/004368S%2004_front_wm_1"
]
}
],
"filters": []
}
}curl "https://api.crawlora.net/api/v1/hermes/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"