# Darty — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and browse electronics products from Darty.com, view detailed specifications and pricing information, and add items directly to your cart. Discover product details like features, availability, and technical specs to help you find exactly what you need.

**Category:** E-commerce | **Website:** [darty.com/](https://darty.com/) | **Docs:** [parse.bot/marketplace/0cc58f97-c15c-43ab-9114-f2cd924fdd33/darty-com-api](https://parse.bot/marketplace/0cc58f97-c15c-43ab-9114-f2cd924fdd33/darty-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-darty-com-api-0cc58f97/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_details

Get detailed information about a single Darty product including title, price, currency, availability, brand, and product ID. Accepts a full Darty product page URL. Returns one Product with all available metadata extracted from the page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | The full URL of the Darty product page (e.g. 'https://www.darty.com/nav/achat/telephonie/telephone_mobile_seul/iphone/apple_iph17pro_256_ora.html'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-darty-com-api-0cc58f97/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### get_product_specs

Get technical specifications for a product. Returns a dictionary of specification names and values extracted from the product page. Typical keys include storage capacity, screen size, camera resolution, processor, and dimensions. Requires a valid Darty product page URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | The full URL of the Darty product page (e.g. 'https://www.darty.com/nav/achat/telephonie/telephone_mobile_seul/iphone/apple_iph17pro_256_ora.html'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-darty-com-api-0cc58f97/get_product_specs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### search_products

Search for products on Darty.com by keyword. Returns up to 30 products from the first page of results. Each product includes title, URL, price, and product ID. Use a product URL from results to call get_product_details or get_product_specs for richer data.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | The search term (e.g. 'iphone', 'samsung', 'television'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-darty-com-api-0cc58f97/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
