Chromehearts APIchromehearts.com ↗
Discover the latest featured and new products from Chrome Hearts, and unlock hidden interactive features available on their homepage. Stay updated with real-time product offerings and explore exclusive content that enhances your Chrome Hearts shopping experience.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/f99d55ca-c832-4cd1-ac6f-e691a0baad03/get_featured_product' \ -H 'X-API-Key: $PARSE_API_KEY'
Returns the current featured/new product from Chrome Hearts. The site rotates which product is featured in the Shop dropdown navigation (it has been a scarf, and changes to different items over time). This endpoint fetches the homepage to identify the current featured category, then follows the redirect to the actual product detail page and extracts full product information. Makes two HTTP requests per call.
No input parameters required.
{
"type": "object",
"fields": {
"url": "Full URL of the product page",
"name": "Product name",
"brand": "Brand name",
"price": "Numeric price value as string",
"images": "Array of high-resolution image URLs",
"details": "Array of product detail bullet points (materials, dimensions, origin)",
"variant": "Product variant code",
"category": "Category name from the shop navigation",
"currency": "Currency code (USD)",
"product_id": "SKU/product identifier",
"availability": "Stock status: in_stock or out_of_stock",
"price_display": "Formatted price with currency symbol",
"all_shop_items": "Array of all current shop navigation items with name and path"
},
"sample": {
"data": {
"url": "https://www.chromehearts.com/scarf/double-peony-scarf/218126MABXXX00D.html",
"name": "DOUBLE PEONY SCARF",
"brand": "Chrome Hearts",
"price": "1100.00",
"images": [
"https://www.chromehearts.com/dw/image/v2/BFBV_PRD/on/demandware.static/-/Sites-ch-master-catalog/default/dw08fefbcc/img_products/hi-res/315218126MABXXX00D_0010_2.png?sw=1600&sh=2000"
],
"details": [
"RED, PINK, AND BLACK TWILL",
"PEONY PRINT",
"100% SILK",
"90.5in X 54.3in",
"MADE IN FRANCE"
],
"variant": "MAB",
"category": "scarf",
"currency": "USD",
"product_id": "218126MABXXX00D",
"availability": "in_stock",
"price_display": "$1,100",
"all_shop_items": [
{
"name": "Baccarat",
"path": "/baccarat"
},
{
"name": "Scents",
"path": "/scents"
},
{
"name": "Socks",
"path": "/socks"
},
{
"name": "scarf",
"path": "/scarf"
}
]
},
"status": "success"
}
}About the Chromehearts API
The Chromehearts API on Parse exposes 2 endpoints for the publicly available data on chromehearts.com. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.