Eius sollicito
2019
actioncomedydrama
★ 0.7 (381397)
tv-shows / #98
2019
★ 0.7 (381397)
Eius sollicito
2019
★ 0.7
curl -sS \
"https://example-data.com/api/v1/tv-shows/98" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/98"
);
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/98"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/98"
)
tv_show = res.json() {
"id": 98,
"title": "Eius sollicito",
"slug": "eius-sollicito-98",
"firstAired": "2019-11-13",
"lastAired": "2026-03-14",
"seasonCount": 7,
"episodeCount": 108,
"genres": [
"action",
"comedy",
"drama"
],
"language": "Spanish",
"posterUrl": "https://picsum.photos/seed/tvshow-98/400/600",
"rating": 0.7,
"ratingCount": 381397,
"status": "ended",
"createdAt": "2025-04-30T04:18:20.621Z"
}