people: List all people (paginated)

API: tvmaze.com:tvmaze-api
Endpoint: /people
Response format: application/json
Auth: none
Method: GET
Last Status: 200
Latency: 343ms

Description

Browse all people in the TVmaze database with pagination. Returns a paginated list of people sorted by TVmaze person ID. Similar to /shows but for the people catalog.

From spec: Returns paginated list of all people. 1000 per page.

Usage Tips

- Default page size is 250 - Use 'page' parameter for pagination - Returns basic info, not full biography - Very large dataset - use search for specific people

Parameters (1)

page (integer, query, optional, default: 0)

Page number (0-indexed)

Examples (1)

Fetch first page of people list probe-gate

Demonstrates fetching the first page of the paginated people list with basic person details

curl 'https://api.tvmaze.com/people'
import requests

resp = requests.get("https://api.tvmaze.com/people")
data = resp.json()
import zingu_apis

api = zingu_apis.api("tvmaze")
result = api.fetch("people")

for item in result:
    print(item)
const resp = await fetch("https://api.tvmaze.com/people");
const data = await resp.json();

Probe History

Latency

Status Codes

TimeStatusLatencySize
2026-04-16 02:18:09.854289 200 343ms
2026-04-15 00:31:46.108134 200 151ms
2026-04-14 00:18:03.301612 200 119ms
2026-04-12 16:53:41.314644 200 227ms
2026-04-10 04:09:25.249668 200 116ms
2026-04-09 00:47:38.366203 200 247ms