# Back Market France — 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 for refurbished products on Back Market and retrieve detailed information including product specifications, available variants, pricing, and customer reviews all in one place. Get comprehensive product data to compare options and make informed purchasing decisions on certified refurbished electronics and devices.

**Category:** E-commerce | **Website:** [backmarket.fr/](https://backmarket.fr/) | **Docs:** [parse.bot/marketplace/532c62f6-2209-4119-9dc6-a58b389645b3/backmarket-fr-api](https://parse.bot/marketplace/532c62f6-2209-4119-9dc6-a58b389645b3/backmarket-fr-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-backmarket-fr-api-532c62f6/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_details

Extract detailed product information from a Back Market product UUID. Returns pricing, brand, model, images, available variants (condition, battery, storage options), and availability status. Makes multiple internal requests (product page, pickers, details, reviews-summary) and combines the results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | No | Product UUID (e.g. 'a8517119-6ed0-4c6f-8799-22f95658bc19'). Either product_id or product_url must be provided. |
| `product_url` | string | No | Full Back Market product URL containing a UUID in the path (e.g. 'https://www.backmarket.fr/fr-fr/p/iphone-15/a8517119-6ed0-4c6f-8799-22f95658bc19'). Either product_id or product_url must be provided. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-backmarket-fr-api-532c62f6/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>","product_url":"<string>"}'
```

### get_product_reviews

Retrieve customer reviews for a product. Returns up to 7 top reviews extracted from the product page structured data along with aggregate rating and total review count.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | No | Product UUID (e.g. 'a8517119-6ed0-4c6f-8799-22f95658bc19'). Either product_id or product_url must be provided. |
| `product_url` | string | No | Full Back Market product page URL (e.g. 'https://www.backmarket.fr/fr-fr/p/iphone-15/a8517119-6ed0-4c6f-8799-22f95658bc19'). Either product_id or product_url must be provided. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-backmarket-fr-api-532c62f6/get_product_reviews \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>","product_url":"<string>"}'
```

### search_products

Search for products on Back Market France by keyword. Returns paginated results with product name, price, rating, and links. Page is 0-indexed; omitting page defaults to 0. Omitting limit defaults to 31 results per page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of results per page. |
| `page` | integer | No | Page number (0-indexed). |
| `query` | string | Yes | Search keyword (e.g. 'iPhone 15', 'MacBook Pro'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-backmarket-fr-api-532c62f6/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>","query":"<string>"}'
```
