example-data.com

tv-shows / #73

Decens adeptio

Decens adeptio

2015

romancedrama

★ 8.5 (347201)

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tv-shows/73"
)
tv_show = res.json()
{
  "id": 73,
  "title": "Decens adeptio",
  "slug": "decens-adeptio-73",
  "firstAired": "2015-05-31",
  "lastAired": "2020-10-31",
  "seasonCount": 12,
  "episodeCount": 242,
  "genres": [
    "romance",
    "drama"
  ],
  "language": "Portuguese",
  "posterUrl": "https://picsum.photos/seed/tvshow-73/400/600",
  "rating": 8.5,
  "ratingCount": 347201,
  "status": "ended",
  "createdAt": "2025-07-20T07:35:41.344Z"
}
Draftbit