Aegrus succurro assentator
2010
mystery
★ 3.7 (103945)
tv-shows / #39
2010
★ 3.7 (103945)
curl -sS \
"https://example-data.com/api/v1/tv-shows/39" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/39"
);
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/39"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/39"
)
tv_show = res.json() {
"id": 39,
"title": "Aegrus succurro assentator",
"slug": "aegrus-succurro-assentator-39",
"firstAired": "2010-07-07",
"lastAired": "2013-04-06",
"seasonCount": 14,
"episodeCount": 201,
"genres": [
"mystery"
],
"language": "Portuguese",
"posterUrl": "https://picsum.photos/seed/tvshow-39/400/600",
"rating": 3.7,
"ratingCount": 103945,
"status": "ended",
"createdAt": "2024-05-28T04:04:34.293Z"
}