example-data.com

tv-shows / #42

Amiculum volup vir

Amiculum volup vir

2007

adventuredrama

★ 7.9 (417554)

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tv-shows/42"
)
tv_show = res.json()
{
  "id": 42,
  "title": "Amiculum volup vir",
  "slug": "amiculum-volup-vir-42",
  "firstAired": "2007-11-13",
  "lastAired": "2016-05-09",
  "seasonCount": 9,
  "episodeCount": 83,
  "genres": [
    "adventure",
    "drama"
  ],
  "language": "Japanese",
  "posterUrl": "https://picsum.photos/seed/tvshow-42/400/600",
  "rating": 7.9,
  "ratingCount": 417554,
  "status": "ended",
  "createdAt": "2024-04-29T05:05:23.776Z"
}
Draftbit