example-data.com
Menu
Browse docs and collections

Overview

tv-shows / #7

Urbs spargo asper capillus et

Urbs spargo asper capillus et

2008

drama

★ 7.3 (213674)

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 7,
  "title": "Urbs spargo asper capillus et",
  "slug": "urbs-spargo-asper-capillus-et-7",
  "firstAired": "2008-03-25",
  "lastAired": null,
  "seasonCount": 15,
  "episodeCount": 358,
  "genres": [
    "drama"
  ],
  "language": "Spanish",
  "posterUrl": "https://picsum.photos/seed/tvshow-7/400/600",
  "rating": 7.3,
  "ratingCount": 213674,
  "status": "running",
  "createdAt": "2025-11-20T20:00:40.609Z"
}