Derideo audentia trucido vomito concedo
2013
dramascience-fictionromance
★ 2.6 (463792)
tv-shows / #71
2013
★ 2.6 (463792)
curl -sS \
"https://example-data.com/api/v1/tv-shows/71" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/71"
);
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/71"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/71"
)
tv_show = res.json() {
"id": 71,
"title": "Derideo audentia trucido vomito concedo",
"slug": "derideo-audentia-trucido-vomito-concedo-71",
"firstAired": "2013-04-27",
"lastAired": "2025-12-13",
"seasonCount": 12,
"episodeCount": 82,
"genres": [
"drama",
"science-fiction",
"romance"
],
"language": "French",
"posterUrl": "https://picsum.photos/seed/tvshow-71/400/600",
"rating": 2.6,
"ratingCount": 463792,
"status": "ended",
"createdAt": "2024-11-08T03:18:22.557Z"
}