# Raceplanet — 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.

> Browse and book thrilling racing experiences at Circuit Zandvoort by checking available cars, pricing, and open dates that fit your schedule. Find the perfect track day or driving experience that matches your budget and preferred time slot.

**Category:** Entertainment | **Website:** [raceplanet.nl/tickets-circuit-rijden/](https://raceplanet.nl/tickets-circuit-rijden/) | **Docs:** [parse.bot/marketplace/55fad0bc-5b81-4cac-aa8f-7b66d6a66c13/raceplanet-nl-api](https://parse.bot/marketplace/55fad0bc-5b81-4cac-aa8f-7b66d6a66c13/raceplanet-nl-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-raceplanet-nl-api-55fad0bc/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_available_dates

Returns the list of dates on which racing experiences can be booked at Circuit Zandvoort. Dates are in ISO 8601 format (YYYY-MM-DD) and represent upcoming event days shared across all experiences.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-raceplanet-nl-api-55fad0bc/get_available_dates \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_experience_details

Returns full details for one racing experience: included cars and activities, optional add-ons with prices, duration, and whether lunch is included. The experience is identified by its URL slug (from list_experiences.identifier).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `experience_slug` | string | Yes | URL slug identifying the experience (e.g. 'driving-experience', 'platinum-experience'). Obtained from list_experiences results as the identifier field. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-raceplanet-nl-api-55fad0bc/get_experience_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"experience_slug":"<string>"}'
```

### list_experiences

Returns all available racing experiences at Circuit Zandvoort, grouped by category (Race Experience, VIP Experience, Racing Cab). Each experience includes its price, maximum group size, and cover image. Results are auto-iterated (single page).

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-raceplanet-nl-api-55fad0bc/list_experiences \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
