Dolorum adhuc officia
2019
fantasyromance
★ 9.6 (228122)
Overview
tv-shows / #62
2019
★ 9.6 (228122)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/62" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/62" ); 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/62"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/62"
)
tv_show = res.json() Response
{
"id": 62,
"title": "Dolorum adhuc officia",
"slug": "dolorum-adhuc-officia-62",
"firstAired": "2019-05-30",
"lastAired": "2026-04-04",
"seasonCount": 9,
"episodeCount": 144,
"genres": [
"fantasy",
"romance"
],
"language": "English",
"posterUrl": "https://picsum.photos/seed/tvshow-62/400/600",
"rating": 9.6,
"ratingCount": 228122,
"status": "ended",
"createdAt": "2023-08-15T12:47:01.525Z"
}