Solvo dedecor
2006
adventureanimation
★ 8.8 (72880)
tv-shows / #94
2006
★ 8.8 (72880)
Solvo dedecor
2006
★ 8.8
curl -sS \
"https://example-data.com/api/v1/tv-shows/94" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/94"
);
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/94"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/94"
)
tv_show = res.json() {
"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"
}