Desino turpis tantum voluptatum
2001
animation
★ 1.9 (379396)
tv-shows / #49
2001
★ 1.9 (379396)
curl -sS \
"https://example-data.com/api/v1/tv-shows/49" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/49"
);
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/49"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/49"
)
tv_show = res.json() {
"id": 49,
"title": "Desino turpis tantum voluptatum",
"slug": "desino-turpis-tantum-voluptatum-49",
"firstAired": "2001-11-30",
"lastAired": null,
"seasonCount": 3,
"episodeCount": 24,
"genres": [
"animation"
],
"language": "Spanish",
"posterUrl": "https://picsum.photos/seed/tvshow-49/400/600",
"rating": 1.9,
"ratingCount": 379396,
"status": "running",
"createdAt": "2024-06-13T15:58:27.656Z"
}