Tribuo utpote tibi verbera arbor caterva
Cognomen inventore ait abutor bellum vulgivagus virgo debeo tolero voluptatem. Comedo bos cuius pel carpo officia artificiose ubi.
Overview
tv-episodes / #329
Cognomen inventore ait abutor bellum vulgivagus virgo debeo tolero voluptatem. Comedo bos cuius pel carpo officia artificiose ubi.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-episodes/329" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-episodes/329" ); 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/329"
);
const tvEpisode = (await res.json()) as TvEpisode; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-episodes/329"
)
tv_episode = res.json() Response
{
"id": 329,
"tvShowId": 3,
"title": "Tribuo utpote tibi verbera arbor caterva",
"slug": "tribuo-utpote-tibi-verbera-arbor-caterva-329",
"seasonNumber": 2,
"episodeNumber": 2,
"airDate": "2020-06-11",
"runtimeMinutes": 58,
"description": "Cognomen inventore ait abutor bellum vulgivagus virgo debeo tolero voluptatem. Comedo bos cuius pel carpo officia artificiose ubi.",
"createdAt": "2025-10-05T03:06:32.005Z"
}