example-data.com

tv-shows / #67

Ultra vorax

Ultra vorax

2025

thrillercrime

★ 1.5 (269362)

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/tv-shows/67" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/tv-shows/67"
);
const tvShow = await res.json();
import type { TvShow } from "https://example-data.com/types/tv-shows.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/tv-shows/67"
);
const tvShow = (await res.json()) as TvShow;
import requests

res = requests.get(
    "https://example-data.com/api/v1/tv-shows/67"
)
tv_show = res.json()
{
  "id": 67,
  "title": "Ultra vorax",
  "slug": "ultra-vorax-67",
  "firstAired": "2025-07-09",
  "lastAired": null,
  "seasonCount": 10,
  "episodeCount": 243,
  "genres": [
    "thriller",
    "crime"
  ],
  "language": "Korean",
  "posterUrl": "https://picsum.photos/seed/tvshow-67/400/600",
  "rating": 1.5,
  "ratingCount": 269362,
  "status": "running",
  "createdAt": "2026-02-11T00:13:33.656Z"
}
Draftbit