get_directors
Retrieve director information for any movie using its IMDb ID. This tool provides JSON data containing the directors associated with a specific film.
Instructions
Get the directors of a movie from IMDb. Args: imdbId: The IMDb ID of the movie to get directors for. Returns: JSON object containing the directors 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"
}