centerparcs.fr APIcenterparcs.fr ↗
Access Center Parcs resort data across 5 countries: park directory, accommodation search, pricing, cheapest deals, and activity listings via 5 API endpoints.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/e5d36d7e-f321-4a4a-ad41-38672448cf9f/get_domains' \ -H 'X-API-Key: $PARSE_API_KEY'
Get all Center Parcs domains (parks) organized by country. Returns parks across France, Belgium, Germany, Netherlands, and Denmark with location coordinates and renovation status.
No input parameters required.
{
"type": "array",
"fields": {
"domains": "array of domain objects with id, name, location, isNew, isRenovated",
"country_code": "string, 2-letter country code (e.g. 'FR', 'BE', 'DE')",
"country_name": "string, localized country name"
},
"sample": {
"data": [
{
"domains": [
{
"id": "LA",
"name": "Le Lac d'Ailette",
"isNew": false,
"location": {
"lat": "49.46910100",
"lon": "3.68106000",
"region": "Hauts-de-France"
},
"isRenovated": false
}
],
"country_code": "FR",
"country_name": "France"
},
{
"domains": [
{
"id": "HA",
"name": "Park De Haan",
"isNew": false,
"location": {
"lat": "51.28461600",
"lon": "3.06332200",
"region": "Flandre-Occidentale"
},
"isRenovated": false
}
],
"country_code": "BE",
"country_name": "Belgique"
}
],
"status": "success"
}
}About the centerparcs.fr API
The Center Parcs France API exposes 5 endpoints covering the full holiday booking data layer for Center Parcs resorts across France, Belgium, Germany, the Netherlands, and Denmark. Use search_accommodations to query live availability with filters for dates, duration, guest count, and pets, or call get_cheapest_holidays to retrieve the lowest-priced stay option per domain sorted by price ascending. Response fields include pricing ranges, accommodation variants, activity details, and location coordinates.
Park Directory and Coverage
The get_domains endpoint returns every Center Parcs park organized by country, with each domain object carrying an id, name, location coordinates, a 2-letter country_code, and boolean flags for isNew and isRenovated. This is the reference dataset for domain codes such as LA, VN, BF, and CH that other endpoints require as input parameters.
Accommodation Search and Pricing
search_accommodations accepts optional filters including arrival_date (YYYY-MM-DD), duration in nights, adults, children, pets, a domain code, and a lowercase country code. When arrival_date is omitted the endpoint defaults to 30 days from today. The results object in the response includes the total available count, a pricing range, active filters, and the matched housing listings. get_accommodation_details narrows the focus to a single housing type identified by domain_code and housing_code, returning all variants of that cottage with pricing, available dates, equipment lists, and photos.
Cheapest Deals Across All Domains
get_cheapest_holidays scans availability across all domains and returns one cheapest option per domain sorted by price ascending. Each entry in the cheapest_options array includes domain_code, domain_name, accommodation_name, arrival_date, departure_date, duration, and discount information. The total_domains field tells you how many parks had at least one available option at query time.
Activities per Domain
get_domain_activities requires a domain_code and accepts an optional season parameter (SUMMER or WINTER). The data object contains a count and a prestation array of activity objects with pricing, descriptions, photos, age requirements, and thematic groupings. Note that querying WINTER season may return empty results for some domains where off-season activity data is not available.
- Find the cheapest Center Parcs stay across all parks for a family of 4 using get_cheapest_holidays filtered by adults count.
- Build a price-comparison widget that queries search_accommodations across multiple domains for the same arrival date and duration.
- Populate a park-selector map with coordinates and country groupings from get_domains.
- Display a full activity catalogue for a specific resort including pricing and age requirements from get_domain_activities.
- Show all available cottage variants at a domain with equipment lists and photos using get_accommodation_details.
- Monitor pricing ranges over time by polling search_accommodations for specific domain and duration combinations.
- Filter pet-friendly accommodations by passing the pets parameter to search_accommodations.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Center Parcs offer an official developer API?+
What does search_accommodations return and how specific can the filters be?+
results object containing the total housing count, a pricing range, active filter values, and the matched housing listings. You can filter by arrival_date, duration (in nights), adults, children, pets, a 2-letter domain code, and a lowercase country code. All parameters are optional; omitting arrival_date defaults the search to 30 days from today.Are real-time booking or reservation creation supported?+
Does get_domain_activities return data for all seasons and all parks?+
season parameter accepts SUMMER or WINTER, but querying WINTER may return empty results for some domains where off-season activity data is not available. Coverage varies by park; you should check the domain code list from get_domains first and handle empty prestation arrays in your integration.