get_user_activity
Retrieve user activities from AniList by specifying the user ID, page number, and entries per page for streamlined activity tracking.
Instructions
Fetch activities from a user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | The page number to display | |
perPage | No | How many entries to display on one page (max 25) | |
user | Yes | The user's AniList ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"default": 1,
"description": "The page number to display",
"type": "number"
},
"perPage": {
"default": 25,
"description": "How many entries to display on one page (max 25)",
"type": "number"
},
"user": {
"description": "The user's AniList ID",
"type": "number"
}
},
"required": [
"user"
],
"type": "object"
}