castcredits: Get person's cast credits

API: tvmaze.com:tvmaze-api
Endpoint: /people/{id}/castcredits
Response format: application/json
Auth: none
Method: GET
Last Status: 200
Latency: 121ms

Description

Get all cast credits for a specific person. Returns every show the person has acted in with their character details. Use this to build a person's acting filmography.

From spec: Returns shows where the person appeared as cast.

Usage Tips

- Includes both past and current shows - 'self' field indicates if they played themselves - Voice work marked with 'voice' field - May include upcoming/unreleased shows

Parameters (1)

id (integer, path, required)

Person ID

Examples (1)

Get cast credits for actor Mike Vogel probe-gate

Demonstrates fetching all acting roles for a person including show and character references

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

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

api = zingu_apis.api("tvmaze")
result = api.fetch("people/{id}/castcredits")

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

Probe History

Latency

Status Codes

TimeStatusLatencySize
2026-04-16 01:32:28.001508 200 121ms
2026-04-15 00:53:53.194660 200 173ms
2026-04-14 01:54:25.822139 200 146ms
2026-04-12 16:03:11.980780 200 110ms
2026-04-10 00:15:00.318460 200 99ms
2026-04-09 03:07:29.607936 200 202ms