## spotify/podcast

`GET /v1/spotify/podcast`

Look up one Spotify podcast (show) by id or open.spotify.com URL: publisher, description, languages, and total episode count.

*Get a Spotify podcast*

| 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` |
| `market` | no | ISO 3166-1 alpha-2 country; show 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?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
{
  "id": "example",
  "name": "Example podcast",
  "kind": "show"
}
```

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