An item in a feed you host.
An entry in a feed you host, the editable record behind a public Episode. Editing an item is how you edit the episode listeners see. The media fields are enclosure URLs. To publish, an item needs a title and default audio.
idstringrequiredHosting ID, used everywhere in this API.
fountain_idstringoptionalPublic Fountain Episode ID; absent until the item is published. Read-only.
titlestringoptionalItem title.
descriptionstringoptionalItem description, as Markdown.
season_numbernumberoptionalSeason number.
item_numbernumberoptionalItem number within the season.
linksstring[]requiredAssociated links, each a URL. Max 3.
explicitbooleanrequiredWhether the item is marked explicit.
The publishing state of the item.
imagestringoptionalCover artwork URL.
audio_defaultstringoptionalDefault (free) audio enclosure URL.
audio_paidstringoptionalSubscriber-only (paid) audio enclosure URL.
video_defaultstringoptionalDefault (free) video enclosure URL (HLS playlist).
video_paidstringoptionalSubscriber-only (paid) video enclosure URL (HLS playlist).
bonusbooleanrequiredWhether the item is subscriber-only (a monetization variant flag).
adfreebooleanrequiredWhether a paid ad-free version is offered (regular items).
early_accessbooleanrequiredWhether a paid early-access version is offered (regular items).
early_access_daysnumberoptionalEarly-access window length in days.
scheduledstringoptionalISO-8601 scheduled release time. Read-only.
publishedstringoptionalISO-8601 publish time. Read-only.
general_releasestringoptionalISO-8601 general release (published + early_access_days). Read-only.
updatedstringrequiredISO-8601 timestamp of the last update.
{
"id": "e5f6g7h8",
"fountain_id": "episode:id:abc123",
"title": "The Genesis Block",
"description": "We dig into the **first block** ever mined.",
"season_number": 2,
"item_number": 14,
"links": [
"https://citadeldispatch.com/cd141"
],
"explicit": false,
"status": "PUBLISHED",
"image": "https://media.fountain.fm/episodes/e5f6g7h8/cover.jpg",
"audio_default": "https://media.fountain.fm/episodes/e5f6g7h8/audio.mp3",
"bonus": false,
"adfree": false,
"early_access": false,
"published": "2026-02-18T22:03:53.467Z",
"updated": "2026-02-18T22:03:53.467Z"
}