Ciminatio aqua audio
2006
fantasy
★ 8.8 (28270)
tv-shows / #88
2006
★ 8.8 (28270)
curl -sS \
"https://example-data.com/api/v1/tv-shows/88" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/88"
);
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/88"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/88"
)
tv_show = res.json() {
"id": 88,
"title": "Ciminatio aqua audio",
"slug": "ciminatio-aqua-audio-88",
"firstAired": "2006-10-16",
"lastAired": null,
"seasonCount": 7,
"episodeCount": 55,
"genres": [
"fantasy"
],
"language": "English",
"posterUrl": "https://picsum.photos/seed/tvshow-88/400/600",
"rating": 8.8,
"ratingCount": 28270,
"status": "running",
"createdAt": "2023-11-14T09:57:50.228Z"
}