get_movie_details
Fetch detailed information about a movie using its IMDB or TMDb ID, sourced from OMDb or TMDb APIs, to access key data for analysis or integration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Movie ID (IMDB ID or TMDb ID) | |
source | No | Data source (omdb or tmdb) | omdb |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Movie ID (IMDB ID or TMDb ID)",
"type": "string"
},
"source": {
"default": "omdb",
"description": "Data source (omdb or tmdb)",
"enum": [
"omdb",
"tmdb"
],
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}