# Vignerons Independants — 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.

> Vignerons Independants provides 1 callable API endpoint through the Parse marketplace.

**Category:** Food & Dining | **Website:** [www.vignerons-independants.com/annuaire-des-vignerons-independants-de-france](https://www.vignerons-independants.com/annuaire-des-vignerons-independants-de-france) | **Docs:** [parse.bot/marketplace/86f29158-ff78-42be-9bf2-438b52bb4a5a/vignerons-independants-com-api](https://parse.bot/marketplace/86f29158-ff78-42be-9bf2-438b52bb4a5a/vignerons-independants-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-vignerons-independants-com-api-86f29158/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_vignerons

Search the directory of Vignerons Indépendants de France. Returns paginated results of winemakers matching the specified filters. Each page returns up to 12 results. All filter parameters accept comma-separated values to select multiple options simultaneously. When no filters are provided, returns all vignerons in the directory.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `activity` | string | No | Winemaker activity/service filter. Comma-separated for multiple values. |
| `cultural_mode` | string | No | Culture/farming method filter. Comma-separated for multiple values. |
| `grape_variety` | string | No | Grape variety (cepage) filter. Comma-separated for multiple values. Examples: cabernet-sauvignon, merlot, chardonnay, pinot-noir. |
| `page` | integer | No | Page number for pagination. Each page contains up to 12 results. |
| `query` | string | No | Free-text search for domaine name, appellation, vigneron name, or wine. |
| `wine_characteristic` | string | No | Wine characteristic/style filter. Comma-separated for multiple values. |
| `wine_color` | string | No | Wine color filter. Comma-separated for multiple values. |
| `wine_region` | string | No | Wine region filter. Comma-separated for multiple values. |
| `won_competition` | string | No | Competition/medal filter. Comma-separated for multiple values. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-vignerons-independants-com-api-86f29158/search_vignerons \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"activity":"<string>","cultural_mode":"<string>","grape_variety":"<string>","page":"<integer>","query":"<string>","wine_characteristic":"<string>","wine_color":"<string>","wine_region":"<string>","won_competition":"<string>"}'
```
