Arguo socius aggredior auctor
2026
animationcrime
★ 3.0 (13494)
tv-shows / #57
2026
★ 3.0 (13494)
curl -sS \
"https://example-data.com/api/v1/tv-shows/57" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/57"
);
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/57"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/57"
)
tv_show = res.json() {
"id": 57,
"title": "Arguo socius aggredior auctor",
"slug": "arguo-socius-aggredior-auctor-57",
"firstAired": "2026-02-13",
"lastAired": "2026-05-05",
"seasonCount": 10,
"episodeCount": 123,
"genres": [
"animation",
"crime"
],
"language": "Korean",
"posterUrl": "https://picsum.photos/seed/tvshow-57/400/600",
"rating": 3,
"ratingCount": 13494,
"status": "ended",
"createdAt": "2023-10-17T05:13:05.960Z"
}