# Center Parcs — 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 book holiday accommodations across Center Parcs resorts, compare pricing to find the best available deals, and discover activities at each location. Browse detailed accommodation information and explore what each park domain offers.

**Category:** Travel | **Website:** [centerparcs.fr/](https://centerparcs.fr/) | **Docs:** [parse.bot/marketplace/e9c1f0bb-a59e-44f0-a9e8-21f0ce80a408/centerparcs-fr-api](https://parse.bot/marketplace/e9c1f0bb-a59e-44f0-a9e8-21f0ce80a408/centerparcs-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-centerparcs-fr-api-e9c1f0bb/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_accommodation_details

Get full details for a specific accommodation type at a domain, including all housing variants with pricing, available dates, equipment, and photos.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `domain_code` | string | Yes | 2-letter domain code (e.g. 'LA', 'VN', 'CH'). |
| `housing_code` | string | Yes | Housing/Cottage type code (e.g. 'LA892', 'VN1051', 'CH2711'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-centerparcs-fr-api-e9c1f0bb/get_accommodation_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"domain_code":"<string>","housing_code":"<string>"}'
```

### get_cheapest_holidays

Get the cheapest available holiday options across all Center Parcs domains. Returns one option per domain sorted by price ascending, including dates, duration, and discount information.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `adults` | integer | No | Number of adults. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-centerparcs-fr-api-e9c1f0bb/get_cheapest_holidays \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"adults":"<integer>"}'
```

### get_domain_activities

Get the list of all activities available at a specific Center Parcs domain. Returns activity details including pricing, descriptions, photos, age requirements, and thematic groupings. WINTER season may return empty results for some domains.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `domain_code` | string | Yes | 2-letter domain code (e.g. 'LA', 'VN', 'BF', 'CH', 'TF', 'BD', 'LG'). |
| `season` | string | No | Season cycle: 'SUMMER' or 'WINTER'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-centerparcs-fr-api-e9c1f0bb/get_domain_activities \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"domain_code":"<string>","season":"<string>"}'
```

### get_domains

Get all Center Parcs domains (parks) organized by country. Returns parks across France, Belgium, Germany, Netherlands, and Denmark with location coordinates and renovation status.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-centerparcs-fr-api-e9c1f0bb/get_domains \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_accommodations

Search for available accommodations across Center Parcs domains. Returns search results with available housing, pricing range, and total counts. If no arrival_date is provided, defaults to 30 days from today. Total may be 0 if no availability for the chosen date/duration combination.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `adults` | integer | No | Number of adults. |
| `arrival_date` | string | No | Arrival date in YYYY-MM-DD format. Omitting defaults to 30 days from today. |
| `children` | integer | No | Number of children. |
| `country` | string | No | Country code filter, lowercase (e.g. 'fr', 'be', 'de', 'nl', 'dk'). |
| `domain` | string | No | Domain/Park code (e.g. 'LA', 'VN', 'BF', 'CH'). |
| `duration` | string | No | Duration in nights (e.g. '2', '3', '4', '7'). |
| `pets` | integer | No | Number of pets. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-centerparcs-fr-api-e9c1f0bb/search_accommodations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"adults":"<integer>","arrival_date":"<string>","children":"<integer>","country":"<string>","domain":"<string>","duration":"<string>","pets":"<integer>"}'
```
