example-data.com

tv-shows

tv-shows

Browse 100 tv-shows records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

Coaegresco ancilla terebro confero

Coaegresco ancilla terebro confero

2018

adventuremystery

★ 8.6 (492051)

Cetera eaque

Cetera eaque

2020

comedy

★ 9.9 (262934)

Deripio creptio capillus currus

Deripio creptio capillus currus

2012

mysterydocumentary

★ 4.3 (482498)

Harum necessitatibus

Harum necessitatibus

2002

romancescience-fictioncrime

★ 3.2 (295444)

Corrigo cur cogito ventosus

Corrigo cur cogito ventosus

2025

mysteryadventure

★ 6.5 (410441)

Surgo synagoga usus

Surgo synagoga usus

2016

realitycrime

★ 2.7 (348269)

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": 1,
      "title": "Coaegresco ancilla terebro confero",
      "slug": "coaegresco-ancilla-terebro-confero-1",
      "firstAired": "2018-08-04",
      "lastAired": "2025-11-08",
      "seasonCount": 2,
      "episodeCount": 21,
      "genres": [
        "adventure",
        "mystery"
      ],
      "language": "English",
      "posterUrl": "https://picsum.photos/seed/tvshow-1/400/600",
      "rating": 8.6,
      "ratingCount": 492051,
      "status": "ended",
      "createdAt": "2023-09-01T01:43:29.348Z"
    },
    {
      "id": 2,
      "title": "Cetera eaque",
      "slug": "cetera-eaque-2",
      "firstAired": "2020-02-23",
      "lastAired": null,
      "seasonCount": 14,
      "episodeCount": 88,
      "genres": [
        "comedy"
      ],
      "language": "German",
      "posterUrl": "https://picsum.photos/seed/tvshow-2/400/600",
      "rating": 9.9,
      "ratingCount": 262934,
      "status": "upcoming",
      "createdAt": "2025-11-01T14:46:53.742Z"
    },
    {
      "id": 3,
      "title": "Deripio creptio capillus currus",
      "slug": "deripio-creptio-capillus-currus-3",
      "firstAired": "2012-01-02",
      "lastAired": "2014-02-01",
      "seasonCount": 5,
      "episodeCount": 5,
      "genres": [
        "mystery",
        "documentary"
      ],
      "language": "English",
      "posterUrl": "https://picsum.photos/seed/tvshow-3/400/600",
      "rating": 4.3,
      "ratingCount": 482498,
      "status": "ended",
      "createdAt": "2024-11-04T00:31:43.174Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 100,
    "totalPages": 4
  },
  "links": {
    "self": "/api/v1/tv-shows?page=1",
    "first": "/api/v1/tv-shows?page=1",
    "last": "/api/v1/tv-shows?page=4",
    "next": "/api/v1/tv-shows?page=2",
    "prev": null
  }
}

View full response →

Draftbit