movie_lists
Find curated collections and lists that include specific movies to support content curation and discovery workflows.
Instructions
Retrieves lists and collections that include a specific movie. Input: movie_id (required TMDB ID), language (optional ISO 639-1 code), page (optional page number). Output: JSON with paginated results of lists containing the movie. Purpose: Discover curated collections and lists featuring a movie for content curation by AI agents.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | ISO 639-1 language (e.g., en-US) | |
movie_id | Yes | TMDB Movie ID | |
page | No | Page number |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"description": "ISO 639-1 language (e.g., en-US)",
"type": "string"
},
"movie_id": {
"description": "TMDB Movie ID",
"type": "number"
},
"page": {
"description": "Page number",
"minimum": 1,
"type": "number"
}
},
"required": [
"movie_id"
],
"type": "object"
}