favourite_character
Add or remove characters as favorites on AniList using their unique ID. Requires user login to manage your preferred anime characters quickly.
Instructions
[Requires Login] Favourite or unfavourite a character by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The AniList ID of the character to favourite/unfavourite |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The AniList ID of the character to favourite/unfavourite",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}