Solio defaeco deporto
2025
mysteryhorror
★ 5.9 (4532)
Overview
tv-shows / #9
2025
★ 5.9 (4532)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/9" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/9" ); 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/9"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/9"
)
tv_show = res.json() Response
{
"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"
}