Skip to main content
GET
/
v1
/
podcasts
/
episodes
/
{id}
/
speakers
cURL
curl -H "X-API-Key: $PARTICLE_API_KEY" \
  "https://api.particle.pro/v1/podcasts/episodes/{id}/speakers"
{
  "data": [
    {
      "name": "<string>",
      "description": "<string>",
      "descriptor": "<string>",
      "entity": {
        "id": "<string>",
        "name": "<string>",
        "slug": "<string>",
        "company": {
          "id": "<string>",
          "domain": "<string>",
          "ticker": "<string>"
        },
        "description": "<string>",
        "person": {
          "id": "<string>",
          "company": "<string>",
          "image_url": "<string>",
          "title": "<string>"
        },
        "type": {
          "name": "<string>",
          "slug": "<string>"
        },
        "wikipedia_url": "<string>"
      },
      "person": {
        "id": "<string>",
        "name": "<string>",
        "image_url": "<string>",
        "slug": "<string>"
      },
      "role": "<string>",
      "speaking_duration_seconds": 123
    }
  ],
  "has_more": true,
  "cursor": "<string>"
}

Authorizations

X-API-Key
string
header
required

Pass your API key in the X-API-Key header (recommended).

Path Parameters

id
string
required

Episode slug or ID

Query Parameters

limit
integer<int64>

Results per page (default: all)

Required range: 1 <= x <= 100
cursor
string

Opaque pagination cursor from previous response

role
enum<string>[] | null

Comma-separated speaker role filter. Defaults to host,co_host,guest,panelist,correspondent (advertisers and unknown soundbite speakers excluded). Pass 'unknown' to include unidentified speakers, 'advertiser' to include ad reads. New writes fold co_host into host; pass co_host to query legacy rows.

Maximum array length: 10
Available options:
host,
co_host,
guest,
panelist,
correspondent,
advertiser,
unknown
Example:
["host", "guest"]

Response

OK

data
object[] | null
required

List of results

has_more
boolean
required

Whether more results exist

cursor
string

Pass to next request for more results