example-data.com
Menu
Browse docs and collections

tv-shows

tv-shows

Page 4 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": 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"
    },
    {
      "id": 74,
      "title": "Deputo ustulo dolore",
      "slug": "deputo-ustulo-dolore-74",
      "firstAired": "2019-06-17",
      "lastAired": "2020-03-19",
      "seasonCount": 14,
      "episodeCount": 291,
      "genres": [
        "romance"
      ],
      "language": "Mandarin",
      "posterUrl": "https://picsum.photos/seed/tvshow-74/400/600",
      "rating": 7.4,
      "ratingCount": 474651,
      "status": "ended",
      "createdAt": "2024-08-31T04:11:26.291Z"
    },
    {
      "id": 75,
      "title": "Spiritus sophismata",
      "slug": "spiritus-sophismata-75",
      "firstAired": "2022-11-29",
      "lastAired": "2025-07-01",
      "seasonCount": 11,
      "episodeCount": 245,
      "genres": [
        "horror",
        "animation"
      ],
      "language": "English",
      "posterUrl": "https://picsum.photos/seed/tvshow-75/400/600",
      "rating": 9,
      "ratingCount": 198904,
      "status": "ended",
      "createdAt": "2023-06-23T20:30:11.652Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 100,
    "totalPages": 5
  },
  "links": {
    "self": "/api/v1/tv-shows?page=4&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=5&limit=24",
    "prev": "/api/v1/tv-shows?page=3&limit=24"
  }
}