Vinco damnatio adaugeo averto
2015
mysterydrama
★ 6.5 (112125)
Overview
tv-shows / #61
2015
★ 6.5 (112125)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/61" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/61" ); 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/61"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/61"
)
tv_show = res.json() Response
{
"id": 61,
"title": "Vinco damnatio adaugeo averto",
"slug": "vinco-damnatio-adaugeo-averto-61",
"firstAired": "2015-03-06",
"lastAired": null,
"seasonCount": 3,
"episodeCount": 58,
"genres": [
"mystery",
"drama"
],
"language": "German",
"posterUrl": "https://picsum.photos/seed/tvshow-61/400/600",
"rating": 6.5,
"ratingCount": 112125,
"status": "running",
"createdAt": "2024-12-10T11:01:48.730Z"
}