Ultra vorax
2025
thrillercrime
★ 1.5 (269362)
tv-shows / #67
2025
★ 1.5 (269362)
Ultra vorax
2025
★ 1.5
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"
}