PodHood is in private beta — request access.
PodHoodDocs
API Reference

Browse a channel's published episodes

Keyset-paginated list of a channel's published episodes. Pass the response's nextCursor back as cursor for the next page; the same facet filters as search apply.

GET
/api/v1/channels/{slug}/episodes

Path Parameters

slug*string

The channel's slug.

Query Parameters

sort?string
Default"newest"

Value in

  • "newest"
  • "popular"
  • "longest"
  • "oldest"
cursor?string

Opaque pagination cursor from a prior response's nextCursor.

topicIds?string

Filter to these topic ids.

personIds?string

Filter to episodes featuring these person entity ids (hosts and guests).

entityIds?string

Filter to episodes mentioning these company/product entity ids.

episodeIds?string

Scope to these episode ids (e.g. to search within a prior result set).

collectionId?string

Filter to one collection (mirrored playlist).

year?integer

Filter to a publication year.

Response Body

application/json

application/json

curl -X GET "https://example.com/api/v1/channels/string/episodes"
{  "episodes": [    {}  ],  "nextCursor": "string"}
{  "error": "string"}
Was this page helpful?