# NTS Radio — 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 nts.live.

**Category:** Music | **Website:** [nts.live/latest](https://nts.live/latest) | **Docs:** [parse.bot/marketplace/404490bc-5248-442b-a065-f67651410903/nts-live-api](https://parse.bot/marketplace/404490bc-5248-442b-a065-f67651410903/nts-live-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-nts-live-api-404490bc/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_episode

Retrieve full details for a specific NTS Radio episode including show name, broadcast timestamp, location, genres, description, public replay URL, and the ordered tracklist with artist and title for each track. The show_alias and episode_alias are extracted from episode paths returned by search_episodes or get_schedule.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `episode_alias` | string | Yes | Episode identifier slug from the episode path (e.g. 'macca-11th-july-2026'). |
| `show_alias` | string | Yes | Show identifier slug from the episode path (e.g. 'macca' from /shows/macca/episodes/...). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nts-live-api-404490bc/get_episode \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"episode_alias":"<string>","show_alias":"<string>"}'
```

### get_schedule

Retrieve the broadcast schedule for an NTS Radio channel. Returns an array of days, each containing an ordered list of broadcasts with titles, start/end times, and paths to episode details. The schedule covers from past_days ago through the current day.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `channel` | string | No | NTS Radio channel number. |
| `past_days` | integer | No | Number of past days to include in the schedule (e.g. 1 returns yesterday and today). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nts-live-api-404490bc/get_schedule \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"channel":"<string>","past_days":"<integer>"}'
```

### search_episodes

Full-text search across NTS Radio shows and episodes. Results include episodes and shows matching the query by title, description, genre, or artist. Each item carries its article_type (episode or show), path for drill-down, genres, and broadcast date.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results to return per request (max 36). |
| `offset` | integer | No | Number of results to skip for pagination. |
| `query` | string | Yes | Search query matching episode titles, show names, descriptions, genres, and artists. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nts-live-api-404490bc/search_episodes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","offset":"<integer>","query":"<string>"}'
```
