# See Tickets — 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 get detailed information about tickets, venues, and event categories on See Tickets. Browse upcoming events by category, view venue details, and find what you're looking for with search suggestions.

**Category:** Entertainment | **Website:** [seetickets.com/](https://seetickets.com/) | **Docs:** [parse.bot/marketplace/4f8608be-e3fa-413f-bd11-84636e23cf88/seetickets-com-api](https://parse.bot/marketplace/4f8608be-e3fa-413f-bd11-84636e23cf88/seetickets-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-seetickets-com-api-4f8608be/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### browse_category

Browse featured artists and events within a ticket category. Returns two arrays: featured items (banner/carousel promotions with name and URL) and artists (grid listings with name, URL, and image). Categories map to site sections like music, theatre, comedy, sport, festivals, attractions.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | Yes | Event category name. Accepted values: music, theatre, comedy, sport, festivals, attractions, events. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-seetickets-com-api-4f8608be/browse_category \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>"}'
```

### get_event_details

Retrieve detailed information about an event or tour page, including sub-events (tour dates), ticket options, Open Graph metadata, and description. For tour pages, returns the list of individual show dates with venues. For single event pages, returns available ticket types with pricing.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | URL path or full URL of the event or tour page (e.g. '/tour/punk-rock-factory', '/event/event-name/venue-name/id'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-seetickets-com-api-4f8608be/get_event_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### get_search_suggestions

Autocomplete endpoint that returns structured search suggestions grouped by category (Events, Venues, Locations). Each group contains suggestions with name, URL path, image URL, and metadata like event count. Useful for building type-ahead search UIs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Partial search term to get suggestions for (e.g. 'rock'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-seetickets-com-api-4f8608be/get_search_suggestions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```

### get_venue_details

Retrieve details about a venue including its name, address, and a calendar of upcoming events. Returns the venue's full street address with postcode and a list of scheduled events with ISO datetime strings.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | URL path or full URL of the venue page (e.g. '/venue/rock-city-nottingham/469'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-seetickets-com-api-4f8608be/get_venue_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### search_events

Full-text search over See Tickets event listings. Returns paginated results matching the query keyword across event names, venues, and descriptions. Each result includes the event name, URL, date, location, and image. Pagination via integer page number; 30 results per page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search keyword to find events (e.g. 'concert', 'rock', 'theatre'). |

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