Vulticulus ancilla coaegresco conor tabella
2022
realityactiondocumentary
★ 3.1 (12162)
tv-shows / #43
2022
★ 3.1 (12162)
curl -sS \
"https://example-data.com/api/v1/tv-shows/43" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/43"
);
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/43"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/43"
)
tv_show = res.json() {
"id": 43,
"title": "Vulticulus ancilla coaegresco conor tabella",
"slug": "vulticulus-ancilla-coaegresco-conor-tabella-43",
"firstAired": "2022-11-24",
"lastAired": "2026-04-13",
"seasonCount": 13,
"episodeCount": 187,
"genres": [
"reality",
"action",
"documentary"
],
"language": "French",
"posterUrl": "https://picsum.photos/seed/tvshow-43/400/600",
"rating": 3.1,
"ratingCount": 12162,
"status": "ended",
"createdAt": "2025-06-08T10:22:28.669Z"
}