Solvo dedecor
2006
adventureanimation
★ 8.8 (72880)
Overview
tv-shows / #94
2006
★ 8.8 (72880)
Solvo dedecor
2006
★ 8.8
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/94" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/94" ); 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/94"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/94"
)
tv_show = res.json() Response
{
"id": 94,
"title": "Solvo dedecor",
"slug": "solvo-dedecor-94",
"firstAired": "2006-11-26",
"lastAired": "2024-03-10",
"seasonCount": 9,
"episodeCount": 61,
"genres": [
"adventure",
"animation"
],
"language": "Japanese",
"posterUrl": "https://picsum.photos/seed/tvshow-94/400/600",
"rating": 8.8,
"ratingCount": 72880,
"status": "ended",
"createdAt": "2024-12-22T06:41:56.306Z"
}