search_models_by_creator
Discover AI models created by a specific user on Civitai. Filter results by username, limit the number of models, and sort by highest rated, most downloaded, or newest for targeted searches.
Instructions
Search for models by a specific creator
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of models to return (default: 20) | |
| sort | No | Sort order for results | |
| username | Yes | Creator username to search for |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Number of models to return (default: 20)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"sort": {
"description": "Sort order for results",
"enum": [
"Highest Rated",
"Most Downloaded",
"Newest"
],
"type": "string"
},
"username": {
"description": "Creator username to search for",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}