get_movie_genres
Retrieve genre details for a specific movie by providing its unique key, using integration with the Plex Media Server API.
Instructions
Get genres for a specific movie.
Parameters: movie_key: The key of the movie.
Returns: A formatted string of movie genres or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
movie_key | Yes |
Input Schema (JSON Schema)
{
"properties": {
"movie_key": {
"title": "Movie Key",
"type": "string"
}
},
"required": [
"movie_key"
],
"title": "get_movie_genresArguments",
"type": "object"
}