List episodes for a podcast
List episodes for a podcast. Returns a paginated list of episodes for a specific podcast, identified by slug (e.g., 'all-in') or ID.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
197 msmedian answer time
$0.03listed price per call
$0.03price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://api.particle.pro/v1/podcasts/:id/episodes
| Category | Everything else |
|---|---|
| Provider host | api.particle.pro |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 3 from 2 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.03 | 197 ms |
Example input (from the provider)
{
"method": "GET",
"pathParams": {
"id": "72Z8CLJLPE3TfCaM1aP2ob"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"properties": {
"id": {
"description": "Podcast slug (e.g., 'all-in'), internal ID, or numeric iTunes ID",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
},
"queryParams": {
"properties": {
"cursor": {
"description": "Opaque pagination cursor from previous response",
"type": "string"
},
"limit": {
"description": "Results per page",
"format": "int64",
"type": "integer"
},
"published_after": {
"description": "Only episodes published after this ISO 8601 date or date-time (e.g. 2024-01-01 or 2024-01-01T00:00:00Z)",
"type": "string"
},
"published_before": {
"description": "Only episodes published before this ISO 8601 date or date-time (e.g. 2024-01-01 or 2024-01-01T00:00:00Z)",
"type": "string"
},
"q": {
"description": "Filter to episodes whose title contains this text, case-insensitively. Matches the episode TITLE only \u2014 to search what is said inside episodes, use /v1/podcasts/episodes/search with podcast_id.",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}