example-data.com
Menu
Browse docs and collections

Overview

podcast-episodes / #323

Verto acquiro ventito virga tristis

Baiulus audio delibero ager. Vorax aegre peior demo tertius repellendus credo averto arcesso apud. Termes stultus atrox paulatim repellendus arma.

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/podcast-episodes/323"
);
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/323"
);
const podcastEpisode = (await res.json()) as PodcastEpisode;

Python example

import requests

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

Response

{
  "id": 323,
  "podcastId": 17,
  "title": "Verto acquiro ventito virga tristis",
  "slug": "verto-acquiro-ventito-virga-tristis-323",
  "description": "Baiulus audio delibero ager. Vorax aegre peior demo tertius repellendus credo averto arcesso apud. Termes stultus atrox paulatim repellendus arma.",
  "audioUrl": "https://example.com/podcasts/17/episodes/1.mp3",
  "durationSeconds": 959,
  "episodeNumber": 1,
  "seasonNumber": null,
  "publishedAt": "2025-05-08T08:15:27.964Z",
  "createdAt": "2025-05-07T19:27:33.807Z"
}