Urbs spargo asper capillus et
2008
drama
★ 7.3 (213674)
tv-shows / #7
2008
★ 7.3 (213674)
curl -sS \
"https://example-data.com/api/v1/tv-shows/7" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/7"
);
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/7"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/7"
)
tv_show = res.json() {
"id": 7,
"title": "Urbs spargo asper capillus et",
"slug": "urbs-spargo-asper-capillus-et-7",
"firstAired": "2008-03-25",
"lastAired": null,
"seasonCount": 15,
"episodeCount": 358,
"genres": [
"drama"
],
"language": "Spanish",
"posterUrl": "https://picsum.photos/seed/tvshow-7/400/600",
"rating": 7.3,
"ratingCount": 213674,
"status": "running",
"createdAt": "2025-11-20T20:00:40.609Z"
}