Sustineo copia solvo ciminatio dicta
2006
thrillerromance
★ 1.1 (401683)
tv-shows / #24
2006
★ 1.1 (401683)
curl -sS \
"https://example-data.com/api/v1/tv-shows/24" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/24"
);
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/24"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/24"
)
tv_show = res.json() {
"id": 24,
"title": "Sustineo copia solvo ciminatio dicta",
"slug": "sustineo-copia-solvo-ciminatio-dicta-24",
"firstAired": "2006-04-19",
"lastAired": null,
"seasonCount": 1,
"episodeCount": 0,
"genres": [
"thriller",
"romance"
],
"language": "German",
"posterUrl": "https://picsum.photos/seed/tvshow-24/400/600",
"rating": 1.1,
"ratingCount": 401683,
"status": "running",
"createdAt": "2024-03-22T08:39:02.729Z"
}