Aranea claudeo
2015
action
★ 7.6 (397842)
tv-shows / #92
2015
★ 7.6 (397842)
Aranea claudeo
2015
★ 7.6
curl -sS \
"https://example-data.com/api/v1/tv-shows/92" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/92"
);
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/92"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/92"
)
tv_show = res.json() {
"id": 92,
"title": "Aranea claudeo",
"slug": "aranea-claudeo-92",
"firstAired": "2015-07-25",
"lastAired": "2020-03-10",
"seasonCount": 8,
"episodeCount": 77,
"genres": [
"action"
],
"language": "Korean",
"posterUrl": "https://picsum.photos/seed/tvshow-92/400/600",
"rating": 7.6,
"ratingCount": 397842,
"status": "ended",
"createdAt": "2024-08-16T21:14:31.634Z"
}