example-data.com
Menu
Browse docs and collections

Overview

podcast-episodes / #337

Armarium defleo dignissimos pel

Desolo ipsam maiores tardus bellicus uterque. Repudiandae cometes coruscus calamitas totam alo cibus. Constans temporibus una. Qui curiositas bellicus apostolus colligo vociferor.

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/podcast-episodes/337" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/podcast-episodes/337"
);
const podcastEpisode = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/podcast-episodes.d.ts https://example-data.com/types/podcast-episodes.d.ts
import type { PodcastEpisode } from "./types/podcast-episodes";

const res = await fetch(
  "https://example-data.com/api/v1/podcast-episodes/337"
);
const podcastEpisode = (await res.json()) as PodcastEpisode;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/podcast-episodes/337"
)
podcast_episode = res.json()

Response

{
  "id": 337,
  "podcastId": 17,
  "title": "Armarium defleo dignissimos pel",
  "slug": "armarium-defleo-dignissimos-pel-337",
  "description": "Desolo ipsam maiores tardus bellicus uterque. Repudiandae cometes coruscus calamitas totam alo cibus. Constans temporibus una. Qui curiositas bellicus apostolus colligo vociferor.",
  "audioUrl": "https://example.com/podcasts/17/episodes/15.mp3",
  "durationSeconds": 2063,
  "episodeNumber": 15,
  "seasonNumber": null,
  "publishedAt": "2025-07-23T05:12:58.073Z",
  "createdAt": "2025-07-22T21:10:29.055Z"
}