Avarus turpis
2023
documentarydrama
★ 7.5 (123769)
Overview
tv-shows / #79
2023
★ 7.5 (123769)
Avarus turpis
2023
★ 7.5
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/79" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/79" ); 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/79"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/79"
)
tv_show = res.json() Response
{
"id": 79,
"title": "Avarus turpis",
"slug": "avarus-turpis-79",
"firstAired": "2023-05-24",
"lastAired": "2025-11-25",
"seasonCount": 3,
"episodeCount": 59,
"genres": [
"documentary",
"drama"
],
"language": "English",
"posterUrl": "https://picsum.photos/seed/tvshow-79/400/600",
"rating": 7.5,
"ratingCount": 123769,
"status": "ended",
"createdAt": "2025-12-13T22:12:01.772Z"
}