example-data.com
Menu
Browse docs and collections

Overview

tv-shows / #5

Corrigo cur cogito ventosus

Corrigo cur cogito ventosus

2025

mysteryadventure

★ 6.5 (410441)

Component variants

Related

Referenced by

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/tv-shows/5" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/tv-shows/5"
);
const tvShow = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/tv-shows.d.ts https://example-data.com/types/tv-shows.d.ts
import type { TvShow } from "./types/tv-shows";

const res = await fetch(
  "https://example-data.com/api/v1/tv-shows/5"
);
const tvShow = (await res.json()) as TvShow;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/tv-shows/5"
)
tv_show = res.json()

Response

{
  "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"
}