# Eventbrite Australia — 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 for events and discover detailed information about upcoming shows, concerts, and gatherings on Eventbrite Australia, while exploring organiser profiles and viewing all events from a specific promoter. Get autocomplete suggestions to quickly find exactly what you're looking for across the platform.

**Category:** Entertainment | **Website:** [eventbrite.com.au/](https://eventbrite.com.au/) | **Docs:** [parse.bot/marketplace/10df19f1-51bd-40c6-bf55-0b2286cdf580/eventbrite-com-au-api](https://parse.bot/marketplace/10df19f1-51bd-40c6-bf55-0b2286cdf580/eventbrite-com-au-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-eventbrite-com-au-api-10df19f1/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_event_details

Get full details of a specific event by its Eventbrite event ID. Returns comprehensive event information including venue with full address, organizer with image and follower count, ticket availability and pricing, tags, and sales status.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | Yes | Eventbrite event ID, a numeric string (e.g. '1984616037994'). Obtainable from search_events results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eventbrite-com-au-api-10df19f1/get_event_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"event_id":"<string>"}'
```

### get_organiser_events

Get all events for a specific organiser by their Eventbrite organiser ID. Returns a list of the organiser's events with full details including venue, ticket availability, and images. Organiser IDs can be obtained from event details via primary_organizer.id.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `organiser_id` | string | Yes | Eventbrite organiser ID, a numeric string (e.g. '79955970183'). Obtainable from get_event_details results under primary_organizer.id. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eventbrite-com-au-api-10df19f1/get_organiser_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"organiser_id":"<string>"}'
```

### get_organiser_profile

Retrieve an organiser's public profile by their Eventbrite organiser ID. Returns organiser name, description, website, logo, and follower count. Organiser IDs can be obtained from event details via primary_organizer.id.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `organiser_id` | string | Yes | Eventbrite organiser ID, a numeric string (e.g. '88045765103'). Obtainable from get_event_details results under primary_organizer.id. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eventbrite-com-au-api-10df19f1/get_organiser_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"organiser_id":"<string>"}'
```

### get_search_autocomplete

Get search autocomplete suggestions for a partial query string. Returns suggested search queries and matching events. Useful for building search-as-you-type interfaces.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Partial search query string (e.g. 'music', 'comedy') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eventbrite-com-au-api-10df19f1/get_search_autocomplete \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```

### search_events

Search for events by keyword and/or location on Eventbrite Australia. Returns a paginated list of events with rich details including venue, organizer, ticket availability, and images. Results are ordered by relevance. When no query is provided, returns all upcoming events in the location.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | No | Location slug in Eventbrite format (e.g. 'australia--sydney', 'australia--melbourne') |
| `page` | integer | No | Page number for pagination |
| `query` | string | No | Search keyword (e.g. 'music', 'comedy', 'workshop') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eventbrite-com-au-api-10df19f1/search_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location":"<string>","page":"<integer>","query":"<string>"}'
```
