Caput vitium adamo
Coerceo tergiversatio congregatio averto thymbra cupiditate cunabula. Alo hic cultellus caste theca auctor acidus. Vester coepi tergum corona adamo molestias.
Overview
tv-episodes / #11230
Coerceo tergiversatio congregatio averto thymbra cupiditate cunabula. Alo hic cultellus caste theca auctor acidus. Vester coepi tergum corona adamo molestias.
Caput vitium adamo
· 59 min
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-episodes/11230" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-episodes/11230" ); 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/11230"
);
const tvEpisode = (await res.json()) as TvEpisode; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-episodes/11230"
)
tv_episode = res.json() Response
{
"id": 11230,
"tvShowId": 94,
"title": "Caput vitium adamo",
"slug": "caput-vitium-adamo-11230",
"seasonNumber": 7,
"episodeNumber": 3,
"airDate": "2023-02-03",
"runtimeMinutes": 59,
"description": "Coerceo tergiversatio congregatio averto thymbra cupiditate cunabula. Alo hic cultellus caste theca auctor acidus. Vester coepi tergum corona adamo molestias.",
"createdAt": "2025-02-10T06:51:59.103Z"
}