Ascisco iure casso tergeo
2016
thrillermystery
★ 6.8 (70848)
Overview
tv-shows / #52
2016
★ 6.8 (70848)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/52" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/52" ); 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/52"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/52"
)
tv_show = res.json() Response
{
"id": 52,
"title": "Ascisco iure casso tergeo",
"slug": "ascisco-iure-casso-tergeo-52",
"firstAired": "2016-12-15",
"lastAired": "2020-03-02",
"seasonCount": 9,
"episodeCount": 85,
"genres": [
"thriller",
"mystery"
],
"language": "German",
"posterUrl": "https://picsum.photos/seed/tvshow-52/400/600",
"rating": 6.8,
"ratingCount": 70848,
"status": "ended",
"createdAt": "2024-08-28T01:23:35.476Z"
}