# Burning Man — 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.

> Access comprehensive Burning Man information including Black Rock City event schedules, ticketing details, themed activities, playa events, volunteering opportunities, and mutant vehicle listings. Search global Burning Man events, stay updated with news and stories, and find preparation resources all in one place.

**Category:** Entertainment | **Website:** [burningman.org/](https://burningman.org/) | **Docs:** [parse.bot/marketplace/2738377f-b6af-4a77-9efc-d7532bb448be/burningman-org-api](https://parse.bot/marketplace/2738377f-b6af-4a77-9efc-d7532bb448be/burningman-org-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-burningman-org-api-2738377f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_brc_event_info

Retrieve main Black Rock City annual festival information including dates, theme, and general description from the official BRC page. Returns the page title, canonical URL, a text summary (truncated to 1000 characters), and the full HTML content.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-burningman-org-api-2738377f/get_brc_event_info \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_brc_theme

Retrieve the annual Black Rock City theme details including the philosophical meaning and creative direction for the current year. Attempts to find a dedicated theme page; falls back to the general 'about-the-theme' page.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-burningman-org-api-2738377f/get_brc_theme \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_global_event_detail

Get full detail for a specific Burning Man global event by its WordPress post ID. Returns the complete event object including metadata (dates, timezone, venue, organizer), content HTML, and taxonomy tags.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | Yes | Numeric event ID from search_global_events results[*].id. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-burningman-org-api-2738377f/get_global_event_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"event_id":"<string>"}'
```

### get_mutant_vehicles_info

Retrieve information about Mutant Vehicles (art cars) and the Department of Mutant Vehicles, including how to volunteer and the application process.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-burningman-org-api-2738377f/get_mutant_vehicles_info \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_news_and_stories

Fetch recent news articles and stories from the Burning Man Journal. Returns paginated post summaries including ID, title, publication date, link, and HTML excerpt.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of results per page. |
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-burningman-org-api-2738377f/get_news_and_stories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>"}'
```

### get_playa_events

Retrieve detailed Black Rock City event schedules, camp listings, or art installations for a specific year from the BRC archive. Supports pagination via offset and limit. Structure of result items varies by data_type.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `data_type` | string | No | Type of data to retrieve. |
| `limit` | integer | No | Maximum number of results to return. |
| `offset` | integer | No | Offset for pagination into the result set. |
| `year` | string | No | Year to fetch (e.g. '2024', '2023'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-burningman-org-api-2738377f/get_playa_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"data_type":"<string>","limit":"<integer>","offset":"<integer>","year":"<string>"}'
```

### get_ticketing_information

Retrieve ticket sale information from the burningman.org ticketing page, including sale program names and their descriptions.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-burningman-org-api-2738377f/get_ticketing_information \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_upcoming_important_dates

Scrape upcoming important dates and planning sessions from the BRC 2026 page. Returns each event item with its date, category, title, and description as a single text entry.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-burningman-org-api-2738377f/get_upcoming_important_dates \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_volunteering_info

Retrieve volunteering information from the Burning Man volunteering page, including how to volunteer, FAQ, and department listings.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-burningman-org-api-2738377f/get_volunteering_info \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_global_events

Search global Burning Man events with optional keyword. Returns paginated results from the WordPress events API with event ID, title, date, link, and description snippet. Pagination is via page number; total count is from the X-WP-Total response header.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of results per page (max 100). |
| `page` | integer | No | Page number for pagination. |
| `query` | string | No | Search keyword to filter events. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-burningman-org-api-2738377f/search_global_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>","query":"<string>"}'
```

### search_site

Search the full Burning Man Project website via the WordPress search API. Returns up to 10 results per query including post/page ID, title, canonical URL, post type, and subtype.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search query string (supports multi-word phrases). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-burningman-org-api-2738377f/search_site \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
