example-data.com
Menu
Browse docs and collections

Overview

tv-episodes / #6426

Succurro templum averto alo coma tricesimus

Comminor verbum surgo voluptate. Iste repellat dapifer patrocinor cetera cohibeo cito qui reprehenderit. Centum victoria cervus bibo capio arbustum.

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/tv-episodes/6426" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/tv-episodes/6426"
);
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/6426"
);
const tvEpisode = (await res.json()) as TvEpisode;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/tv-episodes/6426"
)
tv_episode = res.json()

Response

{
  "id": 6426,
  "tvShowId": 58,
  "title": "Succurro templum averto alo coma tricesimus",
  "slug": "succurro-templum-averto-alo-coma-tricesimus-6426",
  "seasonNumber": 3,
  "episodeNumber": 15,
  "airDate": "2025-11-23",
  "runtimeMinutes": 39,
  "description": "Comminor verbum surgo voluptate. Iste repellat dapifer patrocinor cetera cohibeo cito qui reprehenderit. Centum victoria cervus bibo capio arbustum.",
  "createdAt": "2025-12-03T14:29:26.084Z"
}