get_episode_details
Retrieve formatted details of a specific anime episode by providing its unique ID. Integrates with Bangumi TV API for accurate and structured episode information.
Instructions
Get details of a specific episode.
Args:
episode_id: The ID of the episode.
Returns:
Formatted episode details or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
episode_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"episode_id": {
"title": "Episode Id",
"type": "integer"
}
},
"required": [
"episode_id"
],
"title": "get_episode_detailsArguments",
"type": "object"
}