Deripio creptio capillus currus
2012
mysterydocumentary
★ 4.3 (482498)
tv-shows / #3
2012
★ 4.3 (482498)
curl -sS \
"https://example-data.com/api/v1/tv-shows/3" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/3"
);
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/3"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/3"
)
tv_show = res.json() {
"id": 3,
"title": "Deripio creptio capillus currus",
"slug": "deripio-creptio-capillus-currus-3",
"firstAired": "2012-01-02",
"lastAired": "2014-02-01",
"seasonCount": 5,
"episodeCount": 5,
"genres": [
"mystery",
"documentary"
],
"language": "English",
"posterUrl": "https://picsum.photos/seed/tvshow-3/400/600",
"rating": 4.3,
"ratingCount": 482498,
"status": "ended",
"createdAt": "2024-11-04T00:31:43.174Z"
}