Tabesco patrocinor credo tempus angelus
2006
fantasyscience-fictiondrama
★ 5.8 (189599)
tv-shows / #58
2006
★ 5.8 (189599)
curl -sS \
"https://example-data.com/api/v1/tv-shows/58" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/58"
);
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/58"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/58"
)
tv_show = res.json() {
"id": 58,
"title": "Tabesco patrocinor credo tempus angelus",
"slug": "tabesco-patrocinor-credo-tempus-angelus-58",
"firstAired": "2006-06-17",
"lastAired": "2018-02-11",
"seasonCount": 6,
"episodeCount": 104,
"genres": [
"fantasy",
"science-fiction",
"drama"
],
"language": "Korean",
"posterUrl": "https://picsum.photos/seed/tvshow-58/400/600",
"rating": 5.8,
"ratingCount": 189599,
"status": "ended",
"createdAt": "2025-01-31T12:04:11.752Z"
}