example-data.com
Menu
Browse docs and collections

Overview

tv-shows / #73

Decens adeptio

Decens adeptio

2015

romancedrama

★ 8.5 (347201)

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 73,
  "title": "Decens adeptio",
  "slug": "decens-adeptio-73",
  "firstAired": "2015-05-31",
  "lastAired": "2020-10-31",
  "seasonCount": 12,
  "episodeCount": 242,
  "genres": [
    "romance",
    "drama"
  ],
  "language": "Portuguese",
  "posterUrl": "https://picsum.photos/seed/tvshow-73/400/600",
  "rating": 8.5,
  "ratingCount": 347201,
  "status": "ended",
  "createdAt": "2025-07-20T07:35:41.344Z"
}