Paulatim unus stips
2012
crimedrama
★ 6.2 (359037)
tv-shows / #18
2012
★ 6.2 (359037)
curl -sS \
"https://example-data.com/api/v1/tv-shows/18" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/18"
);
const tvShow = await res.json();import type { TvShow } from "https://example-data.com/types/tv-shows.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/tv-shows/18"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/18"
)
tv_show = res.json() {
"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"
}