Nobis maiores sophismata ascisco universe vita comitatus
Fugiat vacuus universe patrocinor solio careo. Barba fuga tabula venio ter crapula compono deleo temporibus trado.
Overview
tv-episodes / #9051
Fugiat vacuus universe patrocinor solio careo. Barba fuga tabula venio ter crapula compono deleo temporibus trado.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-episodes/9051" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-episodes/9051" ); 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/9051"
);
const tvEpisode = (await res.json()) as TvEpisode; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-episodes/9051"
)
tv_episode = res.json() Response
{
"id": 9051,
"tvShowId": 78,
"title": "Nobis maiores sophismata ascisco universe vita comitatus",
"slug": "nobis-maiores-sophismata-ascisco-universe-vita-comitatus-9051",
"seasonNumber": 2,
"episodeNumber": 18,
"airDate": "2020-03-24",
"runtimeMinutes": 39,
"description": "Fugiat vacuus universe patrocinor solio careo. Barba fuga tabula venio ter crapula compono deleo temporibus trado.",
"createdAt": "2024-12-23T00:00:09.133Z"
}