example-data.com

tv-shows / #79

Avarus turpis

Avarus turpis

2023

documentarydrama

★ 7.5 (123769)

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/tv-shows/79" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/tv-shows/79"
);
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/79"
);
const tvShow = (await res.json()) as TvShow;
import requests

res = requests.get(
    "https://example-data.com/api/v1/tv-shows/79"
)
tv_show = res.json()
{
  "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"
}
Draftbit