Deputo ustulo dolore
2019
romance
★ 7.4 (474651)
Overview
tv-shows / #74
2019
★ 7.4 (474651)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/74" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/74" ); 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/74"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/74"
)
tv_show = res.json() Response
{
"id": 74,
"title": "Deputo ustulo dolore",
"slug": "deputo-ustulo-dolore-74",
"firstAired": "2019-06-17",
"lastAired": "2020-03-19",
"seasonCount": 14,
"episodeCount": 291,
"genres": [
"romance"
],
"language": "Mandarin",
"posterUrl": "https://picsum.photos/seed/tvshow-74/400/600",
"rating": 7.4,
"ratingCount": 474651,
"status": "ended",
"createdAt": "2024-08-31T04:11:26.291Z"
}