get_thread
Retrieve a specific thread from AniList by its unique ID using the dedicated API tool for streamlined data access.
Instructions
Get a specific thread by its AniList ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The AniList ID of the thread |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The AniList ID of the thread",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}