crew: Get show crew

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

Description

Get the crew list for a specific show. Returns people who worked on the show (directors, writers, producers, etc.) with their roles. Use this when you need behind-the-scenes credits rather than on-screen cast.

From spec: Returns crew members for a show.

Usage Tips

- Crew are grouped by type - A person may appear multiple times with different roles - Only significant crew members are included - Results not ordered by importance

Parameters (1)

id (integer, path, required)

Show ID

Examples (1)

Get crew members for Under the Dome probe-gate

Demonstrates fetching production crew with their roles

curl 'https://api.tvmaze.com/shows/1/crew'
import requests

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

api = zingu_apis.api("tvmaze")
result = api.fetch("shows/{id}/crew")

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

Probe History

Latency

Status Codes

TimeStatusLatencySize
2026-04-16 00:15:41.765638 200 129ms
2026-04-15 03:06:59.927529 200 123ms
2026-04-14 00:16:18.999580 200 134ms
2026-04-12 13:37:06.950319 200 96ms
2026-04-10 00:54:40.604289 200 94ms
2026-04-09 02:13:52.073881 200 232ms