Surgo synagoga usus
2016
realitycrime
★ 2.7 (348269)
tv-shows / #6
2016
★ 2.7 (348269)
curl -sS \
"https://example-data.com/api/v1/tv-shows/6" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/6"
);
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/6"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/6"
)
tv_show = res.json() {
"id": 6,
"title": "Surgo synagoga usus",
"slug": "surgo-synagoga-usus-6",
"firstAired": "2016-03-10",
"lastAired": null,
"seasonCount": 9,
"episodeCount": 12,
"genres": [
"reality",
"crime"
],
"language": "Japanese",
"posterUrl": "https://picsum.photos/seed/tvshow-6/400/600",
"rating": 2.7,
"ratingCount": 348269,
"status": "running",
"createdAt": "2023-08-25T15:08:29.758Z"
}