example-data.com

tv-shows / #61

Vinco damnatio adaugeo averto

Vinco damnatio adaugeo averto

2015

mysterydrama

★ 6.5 (112125)

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tv-shows/61"
)
tv_show = res.json()
{
  "id": 61,
  "title": "Vinco damnatio adaugeo averto",
  "slug": "vinco-damnatio-adaugeo-averto-61",
  "firstAired": "2015-03-06",
  "lastAired": null,
  "seasonCount": 3,
  "episodeCount": 58,
  "genres": [
    "mystery",
    "drama"
  ],
  "language": "German",
  "posterUrl": "https://picsum.photos/seed/tvshow-61/400/600",
  "rating": 6.5,
  "ratingCount": 112125,
  "status": "running",
  "createdAt": "2024-12-10T11:01:48.730Z"
}
Draftbit