example-data.com

tv-shows / #21

Vulnero arbor vulnus

Vulnero arbor vulnus

2012

thrilleractionanimation

★ 4.3 (133587)

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tv-shows/21"
)
tv_show = res.json()
{
  "id": 21,
  "title": "Vulnero arbor vulnus",
  "slug": "vulnero-arbor-vulnus-21",
  "firstAired": "2012-06-07",
  "lastAired": "2016-01-08",
  "seasonCount": 4,
  "episodeCount": 35,
  "genres": [
    "thriller",
    "action",
    "animation"
  ],
  "language": "Portuguese",
  "posterUrl": "https://picsum.photos/seed/tvshow-21/400/600",
  "rating": 4.3,
  "ratingCount": 133587,
  "status": "ended",
  "createdAt": "2026-02-03T03:34:14.370Z"
}
Draftbit