movie_images
Fetch movie posters, backdrops, and logos using TMDB ID to support AI image processing and content enrichment with optional language filtering.
Instructions
Fetches images (posters, backdrops, logos) for a movie. Input: movie_id (required TMDB ID), language (optional ISO 639-1 code), include_image_language (optional comma-separated languages). Output: JSON with image arrays. Purpose: Obtain visual media assets for a movie to support AI-driven image processing or content enrichment.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_image_language | No | Filter image languages (comma-separated ISO 639-1 codes or 'null') | |
language | No | ISO 639-1 language (e.g., en-US) | |
movie_id | Yes | TMDB Movie ID |
Input Schema (JSON Schema)
{
"properties": {
"include_image_language": {
"description": "Filter image languages (comma-separated ISO 639-1 codes or 'null')",
"type": "string"
},
"language": {
"description": "ISO 639-1 language (e.g., en-US)",
"type": "string"
},
"movie_id": {
"description": "TMDB Movie ID",
"type": "number"
}
},
"required": [
"movie_id"
],
"type": "object"
}