example-data.com
Menu
Browse docs and collections

tv-shows

tv-shows

Page 2 of 5.

Overview

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/tv-shows?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/tv-shows?limit=25"
);
const { data, meta } = 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, ListEnvelope } from "./types/tv-shows";

const res = await fetch(
  "https://example-data.com/api/v1/tv-shows?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<TvShow>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/tv-shows",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 25,
      "title": "Audentia vicinus beneficium",
      "slug": "audentia-vicinus-beneficium-25",
      "firstAired": "2024-03-26",
      "lastAired": null,
      "seasonCount": 5,
      "episodeCount": 105,
      "genres": [
        "fantasy",
        "documentary"
      ],
      "language": "German",
      "posterUrl": "https://picsum.photos/seed/tvshow-25/400/600",
      "rating": 4.7,
      "ratingCount": 487279,
      "status": "running",
      "createdAt": "2024-03-23T21:21:24.000Z"
    },
    {
      "id": 26,
      "title": "Congregatio adeptio creator quo",
      "slug": "congregatio-adeptio-creator-quo-26",
      "firstAired": "2004-08-30",
      "lastAired": "2012-02-06",
      "seasonCount": 8,
      "episodeCount": 2,
      "genres": [
        "reality"
      ],
      "language": "Japanese",
      "posterUrl": "https://picsum.photos/seed/tvshow-26/400/600",
      "rating": 9.6,
      "ratingCount": 366155,
      "status": "ended",
      "createdAt": "2024-08-10T16:12:27.877Z"
    },
    {
      "id": 27,
      "title": "Paens cohaero suscipit auxilium adfero",
      "slug": "paens-cohaero-suscipit-auxilium-adfero-27",
      "firstAired": "2003-11-25",
      "lastAired": null,
      "seasonCount": 10,
      "episodeCount": 245,
      "genres": [
        "mystery",
        "comedy",
        "reality"
      ],
      "language": "English",
      "posterUrl": "https://picsum.photos/seed/tvshow-27/400/600",
      "rating": 0.8,
      "ratingCount": 42983,
      "status": "running",
      "createdAt": "2025-12-18T11:28:08.992Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 100,
    "totalPages": 5
  },
  "links": {
    "self": "/api/v1/tv-shows?page=2&limit=24",
    "first": "/api/v1/tv-shows?page=1&limit=24",
    "last": "/api/v1/tv-shows?page=5&limit=24",
    "next": "/api/v1/tv-shows?page=3&limit=24",
    "prev": "/api/v1/tv-shows?page=1&limit=24"
  }
}