Doloremque pauci tutis decet suggero
2018
science-fictionmystery
★ 8.5 (211026)
Overview
tv-shows / #53
2018
★ 8.5 (211026)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/53" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/53" ); 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/53"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/53"
)
tv_show = res.json() Response
{
"id": 53,
"title": "Doloremque pauci tutis decet suggero",
"slug": "doloremque-pauci-tutis-decet-suggero-53",
"firstAired": "2018-09-23",
"lastAired": "2021-11-13",
"seasonCount": 4,
"episodeCount": 23,
"genres": [
"science-fiction",
"mystery"
],
"language": "Portuguese",
"posterUrl": "https://picsum.photos/seed/tvshow-53/400/600",
"rating": 8.5,
"ratingCount": 211026,
"status": "ended",
"createdAt": "2024-03-30T04:22:34.360Z"
}