example-data.com
Menu
Browse docs and collections

Overview

tv-shows / #29

Acidus adsuesco clementia

Acidus adsuesco clementia

2019

science-fictioncrime

★ 3.3 (294565)

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/tv-shows/29"
);
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/29"
);
const tvShow = (await res.json()) as TvShow;

Python example

import requests

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

Response

{
  "id": 29,
  "title": "Acidus adsuesco clementia",
  "slug": "acidus-adsuesco-clementia-29",
  "firstAired": "2019-02-17",
  "lastAired": "2021-05-06",
  "seasonCount": 13,
  "episodeCount": 20,
  "genres": [
    "science-fiction",
    "crime"
  ],
  "language": "Korean",
  "posterUrl": "https://picsum.photos/seed/tvshow-29/400/600",
  "rating": 3.3,
  "ratingCount": 294565,
  "status": "ended",
  "createdAt": "2026-02-26T04:48:10.241Z"
}