## spotify/podcast/episodes

`GET /v1/spotify/podcast/episodes`

List a Spotify podcast's episodes newest-first, paginated: title, description, duration, release date, and audio preview.

*List a Spotify podcast's episodes*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | no | Spotify show id (this or url) — e.g. `38bS44xjbVVZ3No3ByF1dJ` |
| `url` | no | open.spotify.com show URL or spotify:show: URI (this or id) — e.g. `https://open.spotify.com/show/38bS44xjbVVZ3No3ByF1dJ` |
| `cursor` | no | Offset for the next page (opaque, from a prior response) — e.g. `25` |
| `limit` | no | Episodes per page, 1-50 (default 25) — e.g. `25` |
| `market` | no | ISO 3166-1 alpha-2 country; episode availability is market-scoped (default US) — e.g. `US` |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 1 credit at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/spotify/podcast/episodes?url=https%3A%2F%2Fopen.spotify.com%2Fshow%2F38bS44xjbVVZ3No3ByF1dJ" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "_meta": {
    "billing": {
      "charged": 0,
      "list_price": 0,
      "reason": "example"
    }
  },
  "dropped": 0,
  "items": []
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/spotify/podcast/episodes#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/spotify/podcast/episodes.json)
