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

> Find events happening near you by location and keyword, then view detailed information about ticket prices and availability for any show that interests you. Browse through search results with easy pagination to discover exactly what you're looking for.

**Category:** Entertainment | **Website:** [www.ticketmaster.com/](https://www.ticketmaster.com/) | **Docs:** [parse.bot/marketplace/85426352-b20a-4537-a2f0-248598a8f2ef/ticketmaster-com-api](https://parse.bot/marketplace/85426352-b20a-4537-a2f0-248598a8f2ef/ticketmaster-com-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-ticketmaster-com-api-85426352/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_event_tickets

Get detailed information for a specific event including ticket pricing, venue details, performer info, sale dates, seatmap URL, and images. The event_id is obtained from search_events results. Returns price_ranges with min/max ticket prices when available, sales dates showing when tickets go on sale, and direct URLs to the event's ticket page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | Yes | Event ID from search_events results (e.g. 'G5diZ_2ksy7oH'). |

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

### search_events

Search events by city and state with optional keyword filtering. Returns paginated results sorted by date or relevance. Each result includes event name, dates, venue, price ranges (when available), classifications, and ticket URLs. Pages are zero-indexed with up to 200 results per page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | No | City name to filter events (e.g. 'New York', 'Los Angeles'). |
| `country_code` | string | No | Two-letter country code (e.g. 'US', 'CA'). |
| `keyword` | string | No | Search keyword to filter events (e.g. 'concert', 'basketball'). Omitting returns all events in the location. |
| `page` | string | No | Zero-indexed page number for pagination. |
| `size` | string | No | Number of results per page (1-200). |
| `sort` | string | No | Sort order for results (e.g. 'date,asc', 'date,desc', 'relevance,desc'). |
| `state_code` | string | No | Two-letter US state code (e.g. 'NY', 'CA'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ticketmaster-com-api-85426352/search_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>","country_code":"<string>","keyword":"<string>","page":"<string>","size":"<string>","sort":"<string>","state_code":"<string>"}'
```
