Endpoint Playground
Test Crawlora's Hermès product 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/product?sku=<sku>&locale=at_de" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| sku | string | Yes | Hermès product sku, in any of the accepted forms | |
| 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 |
{
"code": 200,
"msg": "ok",
"data": {
"locale": "us_en",
"sku": "H252013Z BM360",
"title": "Jet sneaker",
"product_code": "Z857",
"url": "https://www.hermes.com/us/en/product/jet-sneaker-H252013ZvBM/",
"slug": "jet-sneaker",
"price": 1300,
"currency": "USD",
"price_type": "fixed",
"description": "Sneaker in parachute fabric and suede goatskin...",
"dimensions": "Sole height: 0.87\"",
"made_in": "Made in Italy",
"color_name": "bleu galet/blanc",
"colors": [
"Blue"
],
"size": "36",
"materials": [
"Textile"
],
"gender": [
"Women"
],
"categories": [
"WOMEN_SHOES_SNEAKERS"
],
"in_stock": true,
"in_store": false,
"personalizable": false,
"images": [
"https://assets.hermes.com/is/image/hermesproduct/252013Z%20BM_front_wm_1"
],
"variants": {
"colors": [
{
"sku": "H252013Z 02360",
"title": "Jet sneaker",
"color": "noir",
"price": 1300,
"url": "https://www.hermes.com/us/en/product/jet-sneaker-H252013Zv02360/",
"image": "https://assets.hermes.com/is/image/hermesproduct/252013Z%2002_thumbnail_20",
"in_stock": true
}
],
"sizes": [
{
"sku": "H252013Z BM365",
"title": "Jet sneaker",
"size": "36.5",
"price": 1300,
"in_stock": true
}
]
}
}
}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 Hermès product's full detail: title, description, dimensions, the Hermès colour name, country of manufacture, price with its market currency, stock, every product image, and the complete colour and size variant matrix with per-variant sku, price, stock and image. Care, gift and delivery text are returned as Hermès' own HTML fragments. sku accepts the reference-plus-colour form (H252013Z BM), the fuller listing sku that also carries size (H252013Z BM360), or the URL identifier returned by hermes-products (H252013ZvBM).
{
"code": 200,
"msg": "ok",
"data": {
"locale": "us_en",
"sku": "H252013Z BM360",
"title": "Jet sneaker",
"product_code": "Z857",
"url": "https://www.hermes.com/us/en/product/jet-sneaker-H252013ZvBM/",
"slug": "jet-sneaker",
"price": 1300,
"currency": "USD",
"price_type": "fixed",
"description": "Sneaker in parachute fabric and suede goatskin...",
"dimensions": "Sole height: 0.87\"",
"made_in": "Made in Italy",
"color_name": "bleu galet/blanc",
"colors": [
"Blue"
],
"size": "36",
"materials": [
"Textile"
],
"gender": [
"Women"
],
"categories": [
"WOMEN_SHOES_SNEAKERS"
],
"in_stock": true,
"in_store": false,
"personalizable": false,
"images": [
"https://assets.hermes.com/is/image/hermesproduct/252013Z%20BM_front_wm_1"
],
"variants": {
"colors": [
{
"sku": "H252013Z 02360",
"title": "Jet sneaker",
"color": "noir",
"price": 1300,
"url": "https://www.hermes.com/us/en/product/jet-sneaker-H252013Zv02360/",
"image": "https://assets.hermes.com/is/image/hermesproduct/252013Z%2002_thumbnail_20",
"in_stock": true
}
],
"sizes": [
{
"sku": "H252013Z BM365",
"title": "Jet sneaker",
"size": "36.5",
"price": 1300,
"in_stock": true
}
]
}
}
}curl "https://api.crawlora.net/api/v1/hermes/product?sku=<sku>" \
-H "x-api-key: $CRAWLORA_API_KEY"