Acervus vomer cedo
2024
dramathrillerromance
★ 1.7 (380498)
tv-shows / #78
2024
★ 1.7 (380498)
curl -sS \
"https://example-data.com/api/v1/tv-shows/78" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/78"
);
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/78"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/78"
)
tv_show = res.json() {
"id": 78,
"title": "Acervus vomer cedo",
"slug": "acervus-vomer-cedo-78",
"firstAired": "2024-07-31",
"lastAired": "2026-03-13",
"seasonCount": 13,
"episodeCount": 174,
"genres": [
"drama",
"thriller",
"romance"
],
"language": "French",
"posterUrl": "https://picsum.photos/seed/tvshow-78/400/600",
"rating": 1.7,
"ratingCount": 380498,
"status": "cancelled",
"createdAt": "2025-04-09T03:08:41.741Z"
}