example-data.com

tv-shows

tv-shows

Page 4 of 5.

Decens adeptio

Decens adeptio

2015

romancedrama

★ 8.5 (347201)

Deputo ustulo dolore

Deputo ustulo dolore

2019

romance

★ 7.4 (474651)

Spiritus sophismata

Spiritus sophismata

2022

horroranimation

★ 9.0 (198904)

Statim curis repellat vallum stillicidium

Statim curis repellat vallum stillicidium

2016

animation

★ 4.1 (487074)

Creator similique vel vilitas

Creator similique vel vilitas

2023

animation

★ 4.6 (309381)

Acervus vomer cedo

Acervus vomer cedo

2024

dramathrillerromance

★ 1.7 (380498)

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/tv-shows?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/tv-shows?limit=25"
);
const { data, meta } = await res.json();
import type { TvShow, ListEnvelope } from "https://example-data.com/types/tv-shows.d.ts";

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

res = requests.get(
    "https://example-data.com/api/v1/tv-shows",
    params={"limit": 25},
)
data = res.json()
{
  "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",
    "next": "/api/v1/tv-shows?page=5",
    "prev": "/api/v1/tv-shows?page=3"
  }
}
Draftbit