Viscus color ocer atrocitas crebro repudiandae clamo
Sufficio subiungo explicabo arcesso dapifer vespillo. Incidunt casso defendo infit cursim nostrum correptius thymum culpo suppellex. Victus in vado congregatio adipiscor.
Overview
tv-episodes / #8867
Sufficio subiungo explicabo arcesso dapifer vespillo. Incidunt casso defendo infit cursim nostrum correptius thymum culpo suppellex. Victus in vado congregatio adipiscor.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-episodes/8867" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-episodes/8867" ); 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/8867"
);
const tvEpisode = (await res.json()) as TvEpisode; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-episodes/8867"
)
tv_episode = res.json() Response
{
"id": 8867,
"tvShowId": 74,
"title": "Viscus color ocer atrocitas crebro repudiandae clamo",
"slug": "viscus-color-ocer-atrocitas-crebro-repudiandae-clamo-8867",
"seasonNumber": 13,
"episodeNumber": 5,
"airDate": "2020-12-06",
"runtimeMinutes": 66,
"description": "Sufficio subiungo explicabo arcesso dapifer vespillo. Incidunt casso defendo infit cursim nostrum correptius thymum culpo suppellex. Victus in vado congregatio adipiscor.",
"createdAt": "2025-02-28T03:22:29.008Z"
}