Velit arca spargo corporis
2000
action
★ 5.3 (265594)
tv-shows / #34
2000
★ 5.3 (265594)
curl -sS \
"https://example-data.com/api/v1/tv-shows/34" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/34"
);
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/34"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/34"
)
tv_show = res.json() {
"id": 34,
"title": "Velit arca spargo corporis",
"slug": "velit-arca-spargo-corporis-34",
"firstAired": "2000-08-16",
"lastAired": "2021-04-06",
"seasonCount": 2,
"episodeCount": 25,
"genres": [
"action"
],
"language": "Portuguese",
"posterUrl": "https://picsum.photos/seed/tvshow-34/400/600",
"rating": 5.3,
"ratingCount": 265594,
"status": "ended",
"createdAt": "2024-06-21T13:09:47.812Z"
}