get_tmdb_details
Fetch detailed metadata for movies, TV shows, or people using TMDB IDs to support content analysis and information retrieval.
Instructions
Fetches detailed information for a movie, TV show, or person by type and ID. Input: type (required: movie|tv|person), id (required TMDB ID), language (optional ISO 639-1), append (optional comma-separated fields like credits,images). Output: JSON with full item details. Purpose: Obtain in-depth metadata for targeted content analysis by AI agents.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
append | No | Comma-separated append_to_response (e.g., credits,images) | |
id | Yes | TMDB ID | |
language | No | ISO 639-1 code (e.g., en-US) | |
type | Yes | The TMDB media type |
Input Schema (JSON Schema)
{
"properties": {
"append": {
"description": "Comma-separated append_to_response (e.g., credits,images)",
"type": "string"
},
"id": {
"description": "TMDB ID",
"type": "number"
},
"language": {
"description": "ISO 639-1 code (e.g., en-US)",
"type": "string"
},
"type": {
"description": "The TMDB media type",
"enum": [
"movie",
"tv",
"person"
],
"type": "string"
}
},
"required": [
"type",
"id"
],
"type": "object"
}