Amo patruus tersus clam
2001
comedydramafantasy
★ 0.4 (183392)
tv-shows / #47
2001
★ 0.4 (183392)
curl -sS \
"https://example-data.com/api/v1/tv-shows/47" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/47"
);
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/47"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/47"
)
tv_show = res.json() {
"id": 47,
"title": "Amo patruus tersus clam",
"slug": "amo-patruus-tersus-clam-47",
"firstAired": "2001-09-21",
"lastAired": null,
"seasonCount": 13,
"episodeCount": 180,
"genres": [
"comedy",
"drama",
"fantasy"
],
"language": "French",
"posterUrl": "https://picsum.photos/seed/tvshow-47/400/600",
"rating": 0.4,
"ratingCount": 183392,
"status": "running",
"createdAt": "2024-08-06T03:58:00.423Z"
}