get_user_recent_activity
Retrieve recent activity of a user on AniList by providing their numeric ID. The tool simplifies access to user interactions and updates from the AniList API.
Instructions
Get recent activity from a user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
user | Yes | The user's AniList ID (Number ID only, DO NOT use username, any kind of string or other types except for numbers.) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"user": {
"description": "The user's AniList ID (Number ID only, DO NOT use username, any kind of string or other types except for numbers.)",
"type": "number"
}
},
"required": [
"user"
],
"type": "object"
}