example-data.com
Menu
Browse docs and collections

Overview

tv-shows / #14

Crapula cursim attero toties admoneo

Crapula cursim attero toties admoneo

2013

crimethrillercomedy

★ 9.4 (53404)

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 14,
  "title": "Crapula cursim attero toties admoneo",
  "slug": "crapula-cursim-attero-toties-admoneo-14",
  "firstAired": "2013-06-21",
  "lastAired": "2015-02-02",
  "seasonCount": 1,
  "episodeCount": 12,
  "genres": [
    "crime",
    "thriller",
    "comedy"
  ],
  "language": "French",
  "posterUrl": "https://picsum.photos/seed/tvshow-14/400/600",
  "rating": 9.4,
  "ratingCount": 53404,
  "status": "ended",
  "createdAt": "2025-04-03T10:31:15.433Z"
}