example-data.com

tv-shows / #5

Corrigo cur cogito ventosus

Corrigo cur cogito ventosus

2025

mysteryadventure

★ 6.5 (410441)

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tv-shows/5"
)
tv_show = res.json()
{
  "id": 5,
  "title": "Corrigo cur cogito ventosus",
  "slug": "corrigo-cur-cogito-ventosus-5",
  "firstAired": "2025-04-10",
  "lastAired": "2025-09-26",
  "seasonCount": 11,
  "episodeCount": 40,
  "genres": [
    "mystery",
    "adventure"
  ],
  "language": "Mandarin",
  "posterUrl": "https://picsum.photos/seed/tvshow-5/400/600",
  "rating": 6.5,
  "ratingCount": 410441,
  "status": "ended",
  "createdAt": "2025-03-01T02:46:46.765Z"
}
Draftbit