Harum necessitatibus
2002
romancescience-fictioncrime
★ 3.2 (295444)
tv-shows / #4
2002
★ 3.2 (295444)
curl -sS \
"https://example-data.com/api/v1/tv-shows/4" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/4"
);
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/4"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/4"
)
tv_show = res.json() {
"id": 4,
"title": "Harum necessitatibus",
"slug": "harum-necessitatibus-4",
"firstAired": "2002-09-04",
"lastAired": "2017-11-29",
"seasonCount": 7,
"episodeCount": 70,
"genres": [
"romance",
"science-fiction",
"crime"
],
"language": "Korean",
"posterUrl": "https://picsum.photos/seed/tvshow-4/400/600",
"rating": 3.2,
"ratingCount": 295444,
"status": "ended",
"createdAt": "2024-06-03T19:31:33.868Z"
}