Tollo attero
2018
dramathriller
★ 4.6 (18290)
Overview
tv-shows / #70
2018
★ 4.6 (18290)
Tollo attero
2018
★ 4.6
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/70" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/70" ); const tvShow = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/tv-shows.d.ts https://example-data.com/types/tv-shows.d.ts
import type { TvShow } from "./types/tv-shows";
const res = await fetch(
"https://example-data.com/api/v1/tv-shows/70"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/70"
)
tv_show = res.json() Response
{
"id": 70,
"title": "Tollo attero",
"slug": "tollo-attero-70",
"firstAired": "2018-01-22",
"lastAired": "2022-04-08",
"seasonCount": 8,
"episodeCount": 27,
"genres": [
"drama",
"thriller"
],
"language": "French",
"posterUrl": "https://picsum.photos/seed/tvshow-70/400/600",
"rating": 4.6,
"ratingCount": 18290,
"status": "ended",
"createdAt": "2024-02-02T16:18:30.315Z"
}