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