# Manomano — 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 ManoMano.fr products by keyword and browse listings with prices, brands, images, and product URLs.

**Category:** E-commerce | **Website:** [manomano.fr/](https://manomano.fr/) | **Docs:** [parse.bot/marketplace/a9a65bc9-e875-43ec-a262-799f92e78d44/manomano-fr-api](https://parse.bot/marketplace/a9a65bc9-e875-43ec-a262-799f92e78d44/manomano-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-manomano-fr-api-a9a65bc9/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_details

Retrieve full product details from a ManoMano.fr product page including description, specifications, images, variants, and pricing. Requires the full product URL as returned by search_products. Returns a single product with all available metadata.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full product URL from search_products results (e.g. 'https://www.manomano.fr/p/perceuse-visseuse-sans-fil-makita-ddf453sfe3-18-v-3-batteries-3-ah-chargeur-78567310'). |

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

### search_products

Full-text search over ManoMano.fr product catalog via Algolia. Returns paginated product summaries including pricing, brand, seller, category, and stock status. Pagination is zero-based. Each result includes a product URL suitable for get_product_details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of results per page (max 50). |
| `page` | integer | No | Zero-based page number. |
| `query` | string | Yes | Search keyword in French (e.g. 'perceuse', 'robinet', 'peinture'). |

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