Arguo socius aggredior auctor
2026
animationcrime
★ 3.0 (13494)
Overview
tv-shows / #57
2026
★ 3.0 (13494)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/57" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/57" ); const tvShow = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/tv-shows.d.ts https://example-data.com/types/tv-shows.d.ts
import type { TvShow } from "./types/tv-shows";
const res = await fetch(
"https://example-data.com/api/v1/tv-shows/57"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/57"
)
tv_show = res.json() Response
{
"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"
}