Amiculum volup vir
2007
adventuredrama
★ 7.9 (417554)
Overview
tv-shows / #42
2007
★ 7.9 (417554)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/42" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/42" ); 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/42"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/42"
)
tv_show = res.json() Response
{
"id": 42,
"title": "Amiculum volup vir",
"slug": "amiculum-volup-vir-42",
"firstAired": "2007-11-13",
"lastAired": "2016-05-09",
"seasonCount": 9,
"episodeCount": 83,
"genres": [
"adventure",
"drama"
],
"language": "Japanese",
"posterUrl": "https://picsum.photos/seed/tvshow-42/400/600",
"rating": 7.9,
"ratingCount": 417554,
"status": "ended",
"createdAt": "2024-04-29T05:05:23.776Z"
}