The core content object returned across the API.
A ContentHit is the canonical representation of any piece of content: a show, episode, album, track or clip. It carries identity (_id, _type), user-facing info (including the playable info.audio and info.video URLs) and links to related content.
Unique content identifier.
The kind of content.
_guidstringoptionalPodcast GUID, when the content originates from an RSS feed.
infoobjectrequiredUser-facing display information, plus the playable audio and video URLs.
titlestringrequiredDisplay title.
subtitlestringoptionalSecondary title, e.g. the parent show name for an episode.
publisherstringoptionalThe publisher or author.
descriptionstringoptionalLong-form description or show notes (may contain HTML).
imagestringoptionalCover artwork URL.
audiostringoptionalPlayable audio URL, present on episodes and tracks.
videostringoptionalPlayable video URL, when the content has video.
durationnumberoptionalDuration in seconds.
publishedstringoptionalISO-8601 publish date.
payablebooleanoptionalWhether the content can receive value-for-value payments.
Identifiers for related content, e.g. an episode links to its parent show.
tagsstring[]optionalGenre and hashtag tags, e.g. genre:bitcoin.
{
"_id": "episode:id:abc123",
"_type": "EPISODE",
"_guid": "abcdef",
"info": {
"title": "#2394 - Palmer Luckey",
"subtitle": "The Joe Rogan Experience",
"publisher": "Joe Rogan",
"audio": "https://example.com/episodes/abc123/audio.mp3",
"video": "https://example.com/episodes/abc123/video.m3u8",
"duration": 11294,
"published": "2025-10-16T17:00:00.000Z"
},
"links": [
"show:id:def456"
]
}