Tabesco patrocinor credo tempus angelus
2006
fantasyscience-fictiondrama
★ 5.8 (189599)
Overview
tv-shows / #58
2006
★ 5.8 (189599)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/58" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/58" ); 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/58"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/58"
)
tv_show = res.json() Response
{
"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"
}