Sed bellum
2023
actionreality
★ 8.0 (142717)
Overview
tv-shows / #99
2023
★ 8.0 (142717)
Sed bellum
2023
★ 8.0
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/99" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/99" ); 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/99"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/99"
)
tv_show = res.json() Response
{
"id": 99,
"title": "Sed bellum",
"slug": "sed-bellum-99",
"firstAired": "2023-06-28",
"lastAired": null,
"seasonCount": 13,
"episodeCount": 86,
"genres": [
"action",
"reality"
],
"language": "Mandarin",
"posterUrl": "https://picsum.photos/seed/tvshow-99/400/600",
"rating": 8,
"ratingCount": 142717,
"status": "running",
"createdAt": "2024-02-16T21:35:01.728Z"
}