crewcredits: Get person's crew credits

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

Description

Returns an array of crew credits showing production roles (director, producer, writer, etc.) across different shows. Each entry includes the role type and show reference. Empty array if person has no crew credits.

From spec: Returns shows where the person worked as crew.

Usage Tips

- Person ID is required in the URL path - Returns empty array [] for actors without crew roles - Role types include: Creator, Executive Producer, Director, Writer, etc.

Parameters (1)

id (integer, path, required)

Person ID

Examples (1)

Get crew credits for actor Mike Vogel probe-gate

Demonstrates fetching crew/production credits for a person; returns empty array for actors without crew roles

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

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

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

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

Probe History

Latency

Status Codes

TimeStatusLatencySize
2026-04-16 16:56:07.910022 200 113ms
2026-04-16 00:43:49.680729 200 125ms
2026-04-15 03:10:17.602409 200 116ms
2026-04-14 00:45:38.294801 200 193ms
2026-04-12 13:28:04.763154 200 139ms
2026-04-10 01:28:29.747507 200 89ms
2026-04-09 03:27:05.883317 200 130ms