get_todays_birthday_characters
Retrieve a list of characters from AniList whose birthdays are today. Specify the page number to navigate through the results.
Instructions
Get all characters whose birthday is today
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | What page in the search to target |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"default": 1,
"description": "What page in the search to target",
"type": "number"
}
},
"type": "object"
}