Cribro caries tot optio stips
2008
actioncrimedrama
★ 3.0 (33227)
Overview
tv-shows / #37
2008
★ 3.0 (33227)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/37" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/37" ); 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/37"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/37"
)
tv_show = res.json() Response
{
"id": 37,
"title": "Cribro caries tot optio stips",
"slug": "cribro-caries-tot-optio-stips-37",
"firstAired": "2008-07-30",
"lastAired": "2025-03-19",
"seasonCount": 2,
"episodeCount": 14,
"genres": [
"action",
"crime",
"drama"
],
"language": "German",
"posterUrl": "https://picsum.photos/seed/tvshow-37/400/600",
"rating": 3,
"ratingCount": 33227,
"status": "cancelled",
"createdAt": "2024-06-08T08:19:25.981Z"
}