example-data.com

tv-shows / #44

Pax facilis vomer

Pax facilis vomer

2025

documentaryromance

★ 1.3 (53919)

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tv-shows/44"
)
tv_show = res.json()
{
  "id": 44,
  "title": "Pax facilis vomer",
  "slug": "pax-facilis-vomer-44",
  "firstAired": "2025-02-13",
  "lastAired": "2025-07-25",
  "seasonCount": 11,
  "episodeCount": 30,
  "genres": [
    "documentary",
    "romance"
  ],
  "language": "Japanese",
  "posterUrl": "https://picsum.photos/seed/tvshow-44/400/600",
  "rating": 1.3,
  "ratingCount": 53919,
  "status": "ended",
  "createdAt": "2023-05-24T19:41:55.174Z"
}
Draftbit