Skip to main content
GET
/
v1
/
podcasts
/
episodes
/
{id}
/
speakers
List speakers in an episode
curl --request GET \
  --url https://api.particle.pro/v1/podcasts/episodes/{id}/speakers \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "name": "<string>",
      "company": {
        "id": "<string>",
        "domain": "<string>",
        "ticker": "<string>"
      },
      "description": "<string>",
      "entity_id": "<string>",
      "entity_slug": "<string>",
      "person": {
        "id": "<string>",
        "company": "<string>",
        "image_url": "<string>",
        "title": "<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 ID

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