Accusantium peior velit vito
2017
comedythriller
★ 3.5 (365329)
tv-shows / #41
2017
★ 3.5 (365329)
curl -sS \
"https://example-data.com/api/v1/tv-shows/41" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/41"
);
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/41"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/41"
)
tv_show = res.json() {
"id": 41,
"title": "Accusantium peior velit vito",
"slug": "accusantium-peior-velit-vito-41",
"firstAired": "2017-11-24",
"lastAired": null,
"seasonCount": 7,
"episodeCount": 109,
"genres": [
"comedy",
"thriller"
],
"language": "Mandarin",
"posterUrl": "https://picsum.photos/seed/tvshow-41/400/600",
"rating": 3.5,
"ratingCount": 365329,
"status": "running",
"createdAt": "2025-04-03T14:23:34.071Z"
}