Arbor absorbeo
2014
animation
★ 6.9 (281969)
tv-shows / #28
2014
★ 6.9 (281969)
Arbor absorbeo
2014
★ 6.9
curl -sS \
"https://example-data.com/api/v1/tv-shows/28" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/28"
);
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/28"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/28"
)
tv_show = res.json() {
"id": 28,
"title": "Arbor absorbeo",
"slug": "arbor-absorbeo-28",
"firstAired": "2014-06-09",
"lastAired": null,
"seasonCount": 8,
"episodeCount": 176,
"genres": [
"animation"
],
"language": "Korean",
"posterUrl": "https://picsum.photos/seed/tvshow-28/400/600",
"rating": 6.9,
"ratingCount": 281969,
"status": "running",
"createdAt": "2025-07-03T08:47:54.211Z"
}