# StableSocial Spotify Podcast Episodes Scraper

> StableSocial Spotify Podcast Episodes Scraper is a paid API for AI agents from stablesocial.dev, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Scrapes and retrieves paginated episode listings for a Spotify podcast given its ID or URL

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/spotify/podcast/episodes
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-spotify-podcast-episodes-scraper-e2822deb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VDMzU4Rpi_Rj4PUyynHMS

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability stablesocial-spotify-podcast-episodes-scraper-e2822deb -d '<json body>'
```

Example prompt: Can you fetch all the episodes from the Spotify podcast at https://open.spotify.com/show/4rOoJ6Egrf8K2IrywzwOMk so I can see what episodes they've published?

## When to prefer this

Use this endpoint when you need structured episode data from a Spotify podcast programmatically, especially for competitive research, content audits, or building datasets. Prefer this over manual Spotify browsing when you need paginated access to full episode catalogs, or when you want to automate monitoring of new episodes from specific shows. Useful for agents orchestrating social media intelligence workflows across multiple platforms via StableSocial.

## Known failure modes

- Invalid or non-existent Spotify podcast ID returns an error or empty result
- Invalid Spotify podcast URL format causes request failure
- Stale or incorrect cursor value may result in pagination errors or duplicate data
- Spotify rate limiting or blocking on the scraping backend may cause timeouts
- Private or unavailable podcasts may return no data

## How this service works

Scrape Creators · Spotify — Podcast Episodes

## Output

Returns a paginated list of podcast episodes for the specified Spotify podcast, including episode metadata such as titles, descriptions, release dates, and durations. Also includes a cursor value for fetching subsequent pages of results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": "string",
   "description": "Spotify podcast id. If you'd prefer to use the URL instead, you can use the url parameter instead."
  },
  "url": {
   "type": "string",
   "description": "Spotify podcast URL. If you'd prefer to use the id instead, you can use the id parameter instead."
  },
  "cursor": {
   "type": "number",
   "description": "Cursor returned by the previous response. Omit for the first page."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-spotify-podcast-episodes-scraper-e2822deb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablesocial.dev](https://www.zero.xyz/host/stablesocial.dev/llms.txt)
