get_thread_comments
Retrieve comments from a specific AniList thread by providing the thread ID, page number, and comments per page. Simplify accessing thread discussions in a structured format.
Instructions
Get comments for a specific thread
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The AniList thread ID | |
page | No | The page number | |
perPage | No | How many comments per page |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The AniList thread ID",
"type": "number"
},
"page": {
"default": 1,
"description": "The page number",
"type": "number"
},
"perPage": {
"default": 25,
"description": "How many comments per page",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}