example-data.com

tv-shows / #22

Culpo accusator

Culpo accusator

2010

actiondocumentary

★ 8.5 (492048)

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tv-shows/22"
)
tv_show = res.json()
{
  "id": 22,
  "title": "Culpo accusator",
  "slug": "culpo-accusator-22",
  "firstAired": "2010-07-09",
  "lastAired": null,
  "seasonCount": 11,
  "episodeCount": 3,
  "genres": [
    "action",
    "documentary"
  ],
  "language": "Korean",
  "posterUrl": "https://picsum.photos/seed/tvshow-22/400/600",
  "rating": 8.5,
  "ratingCount": 492048,
  "status": "upcoming",
  "createdAt": "2024-08-02T23:15:15.886Z"
}
Draftbit