get_full_user_info
Retrieve a user's complete profile and statistical data from the AniList API by providing a username or user ID.
Instructions
Get a user's complete profile and stats information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
user | Yes | Username or user ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"user": {
"description": "Username or user ID",
"type": [
"number",
"string"
]
}
},
"required": [
"user"
],
"type": "object"
}