Cruentus audacia vado thesaurus repellendus urbanus
Natus bellicus conatus thymbra aestivus theologus in. Teneo crapula cotidie spectaculum vigilo veritatis compello usque pax.
Overview
tv-episodes / #2403
Natus bellicus conatus thymbra aestivus theologus in. Teneo crapula cotidie spectaculum vigilo veritatis compello usque pax.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-episodes/2403" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-episodes/2403" ); const tvEpisode = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/tv-episodes.d.ts https://example-data.com/types/tv-episodes.d.ts
import type { TvEpisode } from "./types/tv-episodes";
const res = await fetch(
"https://example-data.com/api/v1/tv-episodes/2403"
);
const tvEpisode = (await res.json()) as TvEpisode; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-episodes/2403"
)
tv_episode = res.json() Response
{
"id": 2403,
"tvShowId": 20,
"title": "Cruentus audacia vado thesaurus repellendus urbanus",
"slug": "cruentus-audacia-vado-thesaurus-repellendus-urbanus-2403",
"seasonNumber": 11,
"episodeNumber": 3,
"airDate": "2025-12-08",
"runtimeMinutes": 74,
"description": "Natus bellicus conatus thymbra aestivus theologus in. Teneo crapula cotidie spectaculum vigilo veritatis compello usque pax.",
"createdAt": "2024-12-25T09:21:00.175Z"
}