# First Avenue — 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 data from first-avenue.com.

**Category:** Entertainment | **Website:** [first-avenue.com/shows/](https://first-avenue.com/shows/) | **Docs:** [parse.bot/marketplace/2f06121e-8171-4314-a658-95d3ac407da8/first-avenue-com-api](https://parse.bot/marketplace/2f06121e-8171-4314-a658-95d3ac407da8/first-avenue-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-first-avenue-com-api-2f06121e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_shows

List all shows for a given month across First Avenue and partner venues. Returns artist, date, venue, ticket link, and support acts. Results are a single-page list of all events in the selected month (typically 50-80 shows). When month/year are omitted, defaults to the current month.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `month` | string | No | Month number 01-12. Must be provided together with year. |
| `year` | string | No | 4-digit year (e.g. 2026). Must be provided together with month. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-first-avenue-com-api-2f06121e/list_shows \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"month":"<string>","year":"<string>"}'
```
