Volo apostolus sollers demergo
2012
romancefantasyreality
★ 0.5 (486326)
Overview
tv-shows / #30
2012
★ 0.5 (486326)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/30" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/30" ); 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/30"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/30"
)
tv_show = res.json() Response
{
"id": 30,
"title": "Volo apostolus sollers demergo",
"slug": "volo-apostolus-sollers-demergo-30",
"firstAired": "2012-11-22",
"lastAired": "2016-04-28",
"seasonCount": 7,
"episodeCount": 72,
"genres": [
"romance",
"fantasy",
"reality"
],
"language": "English",
"posterUrl": "https://picsum.photos/seed/tvshow-30/400/600",
"rating": 0.5,
"ratingCount": 486326,
"status": "ended",
"createdAt": "2023-11-15T22:12:47.573Z"
}