Adipiscor cunae vestigium libero
Patrocinor ventosus cohors vigilo caste cedo nesciunt aequitas coepi. Reprehenderit adhuc tepesco atrox adduco tolero.
Overview
tv-episodes / #9652
Patrocinor ventosus cohors vigilo caste cedo nesciunt aequitas coepi. Reprehenderit adhuc tepesco atrox adduco tolero.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-episodes/9652" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-episodes/9652" ); 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/9652"
);
const tvEpisode = (await res.json()) as TvEpisode; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-episodes/9652"
)
tv_episode = res.json() Response
{
"id": 9652,
"tvShowId": 82,
"title": "Adipiscor cunae vestigium libero",
"slug": "adipiscor-cunae-vestigium-libero-9652",
"seasonNumber": 5,
"episodeNumber": 4,
"airDate": "2022-03-04",
"runtimeMinutes": 34,
"description": "Patrocinor ventosus cohors vigilo caste cedo nesciunt aequitas coepi. Reprehenderit adhuc tepesco atrox adduco tolero.",
"createdAt": "2025-05-24T08:52:45.782Z"
}