Odit bene tabella debeo appello
Tenax tribuo testimonium terror dolor porro civis totidem pecco tamen. Tempora aegrotatio blandior communis commodi pectus virga antea strues.
Overview
tv-episodes / #4376
Tenax tribuo testimonium terror dolor porro civis totidem pecco tamen. Tempora aegrotatio blandior communis commodi pectus virga antea strues.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-episodes/4376" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-episodes/4376" ); 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/4376"
);
const tvEpisode = (await res.json()) as TvEpisode; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-episodes/4376"
)
tv_episode = res.json() Response
{
"id": 4376,
"tvShowId": 41,
"title": "Odit bene tabella debeo appello",
"slug": "odit-bene-tabella-debeo-appello-4376",
"seasonNumber": 3,
"episodeNumber": 16,
"airDate": "2023-05-24",
"runtimeMinutes": 46,
"description": "Tenax tribuo testimonium terror dolor porro civis totidem pecco tamen. Tempora aegrotatio blandior communis commodi pectus virga antea strues.",
"createdAt": "2025-03-11T11:22:36.191Z"
}