Aranea claudeo
2015
action
★ 7.6 (397842)
Overview
tv-shows / #92
2015
★ 7.6 (397842)
Aranea claudeo
2015
★ 7.6
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/92" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/92" ); 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/92"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/92"
)
tv_show = res.json() Response
{
"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"
}