get_cast
Retrieve complete cast information for any movie using its IMDb ID to identify actors and their roles in the film.
Instructions
Get the cast of a movie from IMDb. Args: imdbId: The IMDb ID of the movie to get cast for. Returns: JSON object containing the cast of the movie.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| imdb_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"imdb_id": {
"title": "Imdb Id",
"type": "string"
}
},
"required": [
"imdb_id"
],
"type": "object"
}