example-data.com

tv-shows / #51

Vomito clam

Vomito clam

2013

animationmysterycomedy

★ 4.2 (185951)

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tv-shows/51"
)
tv_show = res.json()
{
  "id": 51,
  "title": "Vomito clam",
  "slug": "vomito-clam-51",
  "firstAired": "2013-06-14",
  "lastAired": null,
  "seasonCount": 5,
  "episodeCount": 9,
  "genres": [
    "animation",
    "mystery",
    "comedy"
  ],
  "language": "German",
  "posterUrl": "https://picsum.photos/seed/tvshow-51/400/600",
  "rating": 4.2,
  "ratingCount": 185951,
  "status": "running",
  "createdAt": "2023-09-06T10:01:07.437Z"
}
Draftbit