Culpo accusator
2010
actiondocumentary
★ 8.5 (492048)
Overview
tv-shows / #22
2010
★ 8.5 (492048)
Culpo accusator
2010
★ 8.5
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/22" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/22" ); 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/22"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/22"
)
tv_show = res.json() Response
{
"id": 22,
"title": "Culpo accusator",
"slug": "culpo-accusator-22",
"firstAired": "2010-07-09",
"lastAired": null,
"seasonCount": 11,
"episodeCount": 3,
"genres": [
"action",
"documentary"
],
"language": "Korean",
"posterUrl": "https://picsum.photos/seed/tvshow-22/400/600",
"rating": 8.5,
"ratingCount": 492048,
"status": "upcoming",
"createdAt": "2024-08-02T23:15:15.886Z"
}