get_popular_models
Retrieve top popular or downloaded AI models from Civitai’s collection, filtered by time period (AllTime, Year, Month, Week, Day) and customizable limit (up to 100 models).
Instructions
Get the most popular/downloaded models
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of models to return (default: 20) | |
| period | No | Time period for popularity ranking (default: Week) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Number of models to return (default: 20)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"period": {
"description": "Time period for popularity ranking (default: Week)",
"enum": [
"AllTime",
"Year",
"Month",
"Week",
"Day"
],
"type": "string"
}
},
"type": "object"
}