# Ticketmaster Ireland — 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 live events and ticket availability across Ticketmaster Ireland, then view detailed event information and browse resale listings to find better deals. Check real-time resale availability to compare prices and secure tickets for concerts, sports, theater, and more.

**Category:** Entertainment | **Website:** [ticketmaster.ie/](https://ticketmaster.ie/) | **Docs:** [parse.bot/marketplace/ea872e0d-f883-4c25-932a-06f91918840e/ticketmaster-ie-api](https://parse.bot/marketplace/ea872e0d-f883-4c25-932a-06f91918840e/ticketmaster-ie-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-ie-api-ea872e0d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### check_resale_availability

Check resale ticket availability status for a specific event. Returns whether resale is enabled, the event status, and display flags. Requires a valid Ticketmaster event ID (obtainable from search_events).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | Yes | Ticketmaster event ID (e.g. '180064447C6B407D'). Obtain from search_events results. |

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

### get_event_details

Get detailed information for a specific event by its Ticketmaster ID.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | Yes | Ticketmaster event ID |

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

### get_resale_listings

Retrieve resale ticket listings for a specific event.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | Yes | Ticketmaster event ID |

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

### search_events

Search for events on ticketmaster.ie by keyword. Returns a paginated list of matching events with IDs, titles, dates, venue information, artists, and ticketing status. Results are ordered by date. Returns up to 20 results per call.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword for finding events (e.g. 'Coldplay', 'Taylor Swift', 'concert', 'Electric Picnic'). |

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