const response = await fetch('https://api.ufw.dev/v1/podcasts/{podcastId}', {
method: 'GET',
headers: {
Authorization: 'Bearer YOUR_ACCESS_TOKEN',
},
});
const data = await response.json();
Response200
{
"podcast": {
"id": "9f1c0f5e-6b1a-4a2e-9c3d-8f0e5b7a1d24",
"title": "The UFW Podcast",
"description": "Independent conversations about software.",
"language": "en",
"author": "UFW",
"image_url": "https://assets.ufw.dev/podcasts/9f1c0f5e/artwork.jpg",
"explicit": false,
"category": "Technology",
"subcategory": null,
"show_type": "EPISODIC",
"copyright": "© 2026 UFW",
"owner_name": "UFW",
"owner_email": "podcasts@ufw.dev",
"creator_directory_enabled": true,
"status": "PUBLISHED",
"feed_url": "https://api.ufw.dev/v1/podcasts/feeds/9f1c0f5e-6b1a-4a2e-9c3d-8f0e5b7a1d24",
"episodes": [
{
"id": "3a7d2c11-45e8-4b90-9f21-6c0b8ad3e577",
"title": "Building a publishing system",
"description": "How the pipeline works.",
"status": "PUBLISHED",
"episode_number": 1,
"season_id": "5c8e1b02-9d34-4f7a-b6e1-2a9c7d41f038",
"explicit": false,
"episode_type": "FULL",
"duration_seconds": 2841,
"master_size_bytes": 68120576,
"published_at": "2026-08-11T09:24:05Z",
"scheduled_for": null,
"processing_status": "READY",
"processing_error": null
}
],
"seasons": [
{
"id": "5c8e1b02-9d34-4f7a-b6e1-2a9c7d41f038",
"number": 1,
"title": "Season one",
"description": null
}
]
}
}