Ultra vorax
2025
thrillercrime
★ 1.5 (269362)
Overview
tv-shows / #67
2025
★ 1.5 (269362)
Ultra vorax
2025
★ 1.5
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/67" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/67" ); const tvShow = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/tv-shows.d.ts https://example-data.com/types/tv-shows.d.ts
import type { TvShow } from "./types/tv-shows";
const res = await fetch(
"https://example-data.com/api/v1/tv-shows/67"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/67"
)
tv_show = res.json() Response
{
"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"
}