Doloremque pauci tutis decet suggero
2018
science-fictionmystery
★ 8.5 (211026)
tv-shows / #53
2018
★ 8.5 (211026)
curl -sS \
"https://example-data.com/api/v1/tv-shows/53" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/53"
);
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/53"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/53"
)
tv_show = res.json() {
"id": 53,
"title": "Doloremque pauci tutis decet suggero",
"slug": "doloremque-pauci-tutis-decet-suggero-53",
"firstAired": "2018-09-23",
"lastAired": "2021-11-13",
"seasonCount": 4,
"episodeCount": 23,
"genres": [
"science-fiction",
"mystery"
],
"language": "Portuguese",
"posterUrl": "https://picsum.photos/seed/tvshow-53/400/600",
"rating": 8.5,
"ratingCount": 211026,
"status": "ended",
"createdAt": "2024-03-30T04:22:34.360Z"
}