get_recommendations_for_media
Retrieve personalized AniList media recommendations by providing a media ID, with options to paginate and limit results for efficient browsing.
Instructions
Get AniList recommendations for a specific media
Input Schema
Name | Required | Description | Default |
---|---|---|---|
mediaID | Yes | The AniList media ID | |
page | No | Target a specific page number for recommendations | |
perPage | No | Limit the page amount (max 25 per AniList limits) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"mediaID": {
"description": "The AniList media ID",
"type": "number"
},
"page": {
"default": 1,
"description": "Target a specific page number for recommendations",
"type": "number"
},
"perPage": {
"default": 25,
"description": "Limit the page amount (max 25 per AniList limits)",
"type": "number"
}
},
"required": [
"mediaID"
],
"type": "object"
}