example-data.com

tv-shows / #86

Officia curso dedecor vivo

Officia curso dedecor vivo

2008

thriller

★ 7.4 (468387)

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tv-shows/86"
)
tv_show = res.json()
{
  "id": 86,
  "title": "Officia curso dedecor vivo",
  "slug": "officia-curso-dedecor-vivo-86",
  "firstAired": "2008-05-31",
  "lastAired": null,
  "seasonCount": 9,
  "episodeCount": 73,
  "genres": [
    "thriller"
  ],
  "language": "English",
  "posterUrl": "https://picsum.photos/seed/tvshow-86/400/600",
  "rating": 7.4,
  "ratingCount": 468387,
  "status": "running",
  "createdAt": "2025-04-23T03:54:26.694Z"
}
Draftbit