# Thomann (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 musical instruments, audio equipment, and accessories across Thomann's catalog to find products that match your needs. Get instant access to product listings with details to help you discover the right gear for your music setup.

**Category:** E-commerce | **Website:** [www.thomann.fr/search.html?sw=](https://www.thomann.fr/search.html?sw=) | **Docs:** [parse.bot/marketplace/53c632ad-7ff2-46b2-a622-d5c59c5da9b2/thomann-fr-api](https://parse.bot/marketplace/53c632ad-7ff2-46b2-a622-d5c59c5da9b2/thomann-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-thomann-fr-api-53c632ad/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_products

Search for products on Thomann.fr by keyword. Returns paginated results with product details including price, availability, rating, and features. Results are sorted by popularity by default. Each page returns up to the specified limit of products (25, 50, or 100). Use the page parameter to navigate through results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of products per page. Must be one of: 25, 50, or 100. |
| `page` | integer | No | Page number for pagination (starts at 1). |
| `query` | string | Yes | Search keyword or phrase (e.g. 'yamaha piano', 'headphones', 'microphone'). |
| `sort` | string | No | Sort order for results. |

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