Quisquam virgo sublime animadverto consequatur
2021
thrillerhorrorscience-fiction
★ 1.1 (364241)
Overview
tv-shows / #54
2021
★ 1.1 (364241)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/54" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/54" ); 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/54"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/54"
)
tv_show = res.json() Response
{
"id": 54,
"title": "Quisquam virgo sublime animadverto consequatur",
"slug": "quisquam-virgo-sublime-animadverto-consequatur-54",
"firstAired": "2021-02-22",
"lastAired": null,
"seasonCount": 9,
"episodeCount": 63,
"genres": [
"thriller",
"horror",
"science-fiction"
],
"language": "Korean",
"posterUrl": "https://picsum.photos/seed/tvshow-54/400/600",
"rating": 1.1,
"ratingCount": 364241,
"status": "running",
"createdAt": "2024-11-03T02:00:16.449Z"
}