get_popular_animations
Retrieve a list of trending Lottie animations using paging options to specify page number and items per page, ideal for discovering popular content on LottieFiles.
Instructions
Get a list of currently popular Lottie animations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of items per page | |
page | No | Page number, starting from 1 |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 20,
"description": "Number of items per page",
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"page": {
"default": 1,
"description": "Page number, starting from 1",
"minimum": 1,
"type": "integer"
}
},
"type": "object"
}