Pecco natus adopto correptius viridis
1998
comedycrime
★ 9.1 (360065)
tv-shows / #87
1998
★ 9.1 (360065)
curl -sS \
"https://example-data.com/api/v1/tv-shows/87" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/87"
);
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/87"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/87"
)
tv_show = res.json() {
"id": 87,
"title": "Pecco natus adopto correptius viridis",
"slug": "pecco-natus-adopto-correptius-viridis-87",
"firstAired": "1998-11-22",
"lastAired": "2019-02-12",
"seasonCount": 4,
"episodeCount": 77,
"genres": [
"comedy",
"crime"
],
"language": "Spanish",
"posterUrl": "https://picsum.photos/seed/tvshow-87/400/600",
"rating": 9.1,
"ratingCount": 360065,
"status": "ended",
"createdAt": "2025-01-10T07:43:44.938Z"
}