darty.com APIdarty.com ↗
Access Darty.com product details, search results, and technical specifications via API. Get prices, availability, brand, and specs for French electronics listings.
curl -X GET 'https://api.parse.bot/scraper/864b8924-1763-4c4c-ba5b-eeee97a33f41/get_product_details?url=https%3A%2F%2Fwww.darty.com%2Fnav%2Fachat%2Fteleviseurs%2Fteleviseur_led%2Fsamsung%2Fsamsung_ue55cu7175uxxc.html' \ -H 'X-API-Key: $PARSE_API_KEY'
Get detailed information about a product including title, price, currency, availability, brand, and product ID. Requires a valid Darty product page URL.
| Param | Type | Description |
|---|---|---|
| urlrequired | string | The full URL of the Darty product page (e.g. 'https://www.darty.com/nav/achat/televiseurs/televiseur_led/…/product_ref.html'). |
{
"type": "object",
"fields": {
"id": "string Darty product codic ID",
"url": "string product page URL",
"brand": "string brand name or null if not detected",
"price": "number price in EUR",
"title": "string product name",
"source": "string data extraction method used",
"currency": "string currency code (EUR)",
"availability": "string availability or delivery information"
},
"sample": {
"data": {
"id": "8083843",
"url": "https://www.darty.com/nav/achat/telephonie/telephone_mobile_seul/iphone/apple_iph17pro_256_ora.html",
"brand": "Apple",
"price": 1329,
"title": "Apple iPhone 17 Pro 256Go Orange cosmique",
"source": "html",
"currency": "EUR",
"availability": "Livraison gratuite"
},
"status": "success"
}
}About the darty.com API
The Darty API covers France's major electronics retailer through 3 endpoints, returning product details, keyword search results, and technical specifications. The get_product_details endpoint retrieves title, EUR price, availability, brand, and Darty's internal codic product ID for any product page URL. The search_products endpoint returns up to 30 matching products per query, and get_product_specs maps the full spec sheet for any listed product.
Product Details and Availability
The get_product_details endpoint accepts a full Darty product page URL and returns a structured object with the product title, price (numeric, in EUR), currency, availability (delivery or stock status text), brand, and Darty's id (the codic identifier). The url field echoes the canonical product page address. The brand field may return null when brand information is not present on the page.
Keyword Search
The search_products endpoint takes a query string — for example 'television' or 'iphone' — and returns a products array of up to 30 items from the first page of Darty results. Each product object includes title, url, price, and id, along with a count field indicating how many products were returned in that response. Pagination beyond the first page is not currently supported.
Technical Specifications
The get_product_specs endpoint accepts the same product page URL format as get_product_details and returns a specs object: a flat dictionary mapping specification attribute names to their values as they appear on the product page. This covers fields like screen resolution, energy class, connectivity, dimensions, and any other attributes Darty lists for that category. The exact keys vary by product category and individual listing.
- Monitor EUR price changes on specific Darty product URLs for consumer electronics
- Build a French-market product catalog by querying
search_productsfor category keywords - Compare technical specs across multiple TVs or laptops using
get_product_specs - Check real-time availability and delivery status for Darty listings using
get_product_details - Enrich an existing product database with Darty codic IDs and brand names
- Aggregate search results for a keyword across multiple French retailers including Darty
- Power a price alert service using the
priceandavailabilityfields from product detail responses
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Darty have an official public developer API?+
What does `get_product_specs` return, and does it return the same fields for every product?+
specs dictionary mapping specification names to values as listed on that product's Darty page. The keys are not standardized across categories — a television listing will have different spec keys than a washing machine. Your code should handle variable key sets.Does `search_products` return results beyond the first page?+
Does the API return customer reviews or ratings for Darty products?+
Is the `availability` field a structured status or free-form text?+
availability field returns the delivery or stock status text as it appears on the Darty product page. It is a plain string and is not normalized to a fixed set of values, so parsing may vary across products and over time.