Sed bellum
2023
actionreality
★ 8.0 (142717)
tv-shows / #99
2023
★ 8.0 (142717)
Sed bellum
2023
★ 8.0
curl -sS \
"https://example-data.com/api/v1/tv-shows/99" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/99"
);
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/99"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/99"
)
tv_show = res.json() {
"id": 99,
"title": "Sed bellum",
"slug": "sed-bellum-99",
"firstAired": "2023-06-28",
"lastAired": null,
"seasonCount": 13,
"episodeCount": 86,
"genres": [
"action",
"reality"
],
"language": "Mandarin",
"posterUrl": "https://picsum.photos/seed/tvshow-99/400/600",
"rating": 8,
"ratingCount": 142717,
"status": "running",
"createdAt": "2024-02-16T21:35:01.728Z"
}