tv_credits
Fetch cast and crew credits for TV shows using TMDB ID to analyze personnel information and support AI-driven recommendations.
Instructions
Fetches cast and crew credits for a TV show. Input: tv_id (required TMDB ID), language (optional ISO 639-1). Output: JSON with cast and crew details. Purpose: Retrieve detailed personnel information for TV show analysis and recommendations by AI agents.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | ISO 639-1 code (e.g., en-US) | |
tv_id | Yes | TMDB TV Show ID |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"description": "ISO 639-1 code (e.g., en-US)",
"type": "string"
},
"tv_id": {
"description": "TMDB TV Show ID",
"type": "number"
}
},
"required": [
"tv_id"
],
"type": "object"
}