Solio defaeco deporto
2025
mysteryhorror
★ 5.9 (4532)
tv-shows / #9
2025
★ 5.9 (4532)
curl -sS \
"https://example-data.com/api/v1/tv-shows/9" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/9"
);
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/9"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/9"
)
tv_show = res.json() {
"id": 9,
"title": "Solio defaeco deporto",
"slug": "solio-defaeco-deporto-9",
"firstAired": "2025-08-19",
"lastAired": "2025-11-11",
"seasonCount": 15,
"episodeCount": 302,
"genres": [
"mystery",
"horror"
],
"language": "Japanese",
"posterUrl": "https://picsum.photos/seed/tvshow-9/400/600",
"rating": 5.9,
"ratingCount": 4532,
"status": "ended",
"createdAt": "2023-06-09T15:41:11.349Z"
}