Voluptate tollo condico suffoco aspernatur comptus curiositas
Adicio demonstro ubi thymbra. Defungo tergo catena cerno tendo theologus theatrum contego agnosco.
Overview
tv-episodes / #11095
Adicio demonstro ubi thymbra. Defungo tergo catena cerno tendo theologus theatrum contego agnosco.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-episodes/11095" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-episodes/11095" ); 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/11095"
);
const tvEpisode = (await res.json()) as TvEpisode; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-episodes/11095"
)
tv_episode = res.json() Response
{
"id": 11095,
"tvShowId": 93,
"title": "Voluptate tollo condico suffoco aspernatur comptus curiositas",
"slug": "voluptate-tollo-condico-suffoco-aspernatur-comptus-curiositas-11095",
"seasonNumber": 10,
"episodeNumber": 6,
"airDate": "2018-03-10",
"runtimeMinutes": 78,
"description": "Adicio demonstro ubi thymbra. Defungo tergo catena cerno tendo theologus theatrum contego agnosco.",
"createdAt": "2025-01-11T10:50:38.406Z"
}