Creator similique vel vilitas
2023
animation
★ 4.6 (309381)
tv-shows / #77
2023
★ 4.6 (309381)
curl -sS \
"https://example-data.com/api/v1/tv-shows/77" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/77"
);
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/77"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/77"
)
tv_show = res.json() {
"id": 77,
"title": "Creator similique vel vilitas",
"slug": "creator-similique-vel-vilitas-77",
"firstAired": "2023-06-01",
"lastAired": null,
"seasonCount": 1,
"episodeCount": 21,
"genres": [
"animation"
],
"language": "French",
"posterUrl": "https://picsum.photos/seed/tvshow-77/400/600",
"rating": 4.6,
"ratingCount": 309381,
"status": "running",
"createdAt": "2024-06-07T07:47:29.329Z"
}