Paulatim unus stips
2012
crimedrama
★ 6.2 (359037)
Overview
tv-shows / #18
2012
★ 6.2 (359037)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/18" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/18" ); 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/18"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/18"
)
tv_show = res.json() Response
{
"id": 18,
"title": "Paulatim unus stips",
"slug": "paulatim-unus-stips-18",
"firstAired": "2012-07-20",
"lastAired": "2016-05-21",
"seasonCount": 15,
"episodeCount": 20,
"genres": [
"crime",
"drama"
],
"language": "Spanish",
"posterUrl": "https://picsum.photos/seed/tvshow-18/400/600",
"rating": 6.2,
"ratingCount": 359037,
"status": "ended",
"createdAt": "2026-03-09T06:32:44.688Z"
}