example-data.com
Menu
Browse docs and collections

Overview

tv-shows / #87

Pecco natus adopto correptius viridis

Pecco natus adopto correptius viridis

1998

comedycrime

★ 9.1 (360065)

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 87,
  "title": "Pecco natus adopto correptius viridis",
  "slug": "pecco-natus-adopto-correptius-viridis-87",
  "firstAired": "1998-11-22",
  "lastAired": "2019-02-12",
  "seasonCount": 4,
  "episodeCount": 77,
  "genres": [
    "comedy",
    "crime"
  ],
  "language": "Spanish",
  "posterUrl": "https://picsum.photos/seed/tvshow-87/400/600",
  "rating": 9.1,
  "ratingCount": 360065,
  "status": "ended",
  "createdAt": "2025-01-10T07:43:44.938Z"
}