Accusantium peior velit vito
2017
comedythriller
★ 3.5 (365329)
Overview
tv-shows / #41
2017
★ 3.5 (365329)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/41" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/41" ); 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/41"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/41"
)
tv_show = res.json() Response
{
"id": 41,
"title": "Accusantium peior velit vito",
"slug": "accusantium-peior-velit-vito-41",
"firstAired": "2017-11-24",
"lastAired": null,
"seasonCount": 7,
"episodeCount": 109,
"genres": [
"comedy",
"thriller"
],
"language": "Mandarin",
"posterUrl": "https://picsum.photos/seed/tvshow-41/400/600",
"rating": 3.5,
"ratingCount": 365329,
"status": "running",
"createdAt": "2025-04-03T14:23:34.071Z"
}