example-data.com

tv-shows / #82

Cura porro

Cura porro

2020

animation

★ 6.0 (112282)

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tv-shows/82"
)
tv_show = res.json()
{
  "id": 82,
  "title": "Cura porro",
  "slug": "cura-porro-82",
  "firstAired": "2020-03-16",
  "lastAired": "2020-05-03",
  "seasonCount": 13,
  "episodeCount": 205,
  "genres": [
    "animation"
  ],
  "language": "Korean",
  "posterUrl": "https://picsum.photos/seed/tvshow-82/400/600",
  "rating": 6,
  "ratingCount": 112282,
  "status": "cancelled",
  "createdAt": "2024-08-24T04:56:07.262Z"
}
Draftbit