Odio umerus verumtamen
2012
animationfantasy
★ 5.8 (309727)
Overview
tv-shows / #10
2012
★ 5.8 (309727)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/10" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/10" ); 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/10"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/10"
)
tv_show = res.json() Response
{
"id": 10,
"title": "Odio umerus verumtamen",
"slug": "odio-umerus-verumtamen-10",
"firstAired": "2012-04-27",
"lastAired": "2019-05-09",
"seasonCount": 6,
"episodeCount": 134,
"genres": [
"animation",
"fantasy"
],
"language": "German",
"posterUrl": "https://picsum.photos/seed/tvshow-10/400/600",
"rating": 5.8,
"ratingCount": 309727,
"status": "ended",
"createdAt": "2023-11-18T04:51:38.381Z"
}