get_subject_details
Retrieve detailed information about a specific subject such as anime, books, or games by providing a subject ID, formatted for easy use and integration.
Instructions
Get details of a specific subject (e.g., anime, book, game).
Args:
subject_id: The ID of the subject.
Returns:
Formatted subject details or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
subject_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"subject_id": {
"title": "Subject Id",
"type": "integer"
}
},
"required": [
"subject_id"
],
"title": "get_subject_detailsArguments",
"type": "object"
}