browse_images
Explore and filter AI-generated images from Civitai by model, creator, or content level. Customize results with pagination, sorting, and time period filters.
Instructions
Browse AI-generated images from Civitai
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of images to return (1-200, default 100) | |
modelId | No | Filter images from a specific model | |
modelVersionId | No | Filter images from a specific model version | |
nsfw | No | NSFW content level filter | |
page | No | Page number for pagination | |
period | No | Time period for sorting | |
postId | No | Get images from a specific post | |
sort | No | Sort order for images | |
username | No | Filter images by creator username |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Number of images to return (1-200, default 100)",
"maximum": 200,
"minimum": 1,
"type": "number"
},
"modelId": {
"description": "Filter images from a specific model",
"type": "number"
},
"modelVersionId": {
"description": "Filter images from a specific model version",
"type": "number"
},
"nsfw": {
"description": "NSFW content level filter",
"enum": [
"None",
"Soft",
"Mature",
"X"
],
"type": "string"
},
"page": {
"description": "Page number for pagination",
"minimum": 1,
"type": "number"
},
"period": {
"description": "Time period for sorting",
"enum": [
"AllTime",
"Year",
"Month",
"Week",
"Day"
],
"type": "string"
},
"postId": {
"description": "Get images from a specific post",
"type": "number"
},
"sort": {
"description": "Sort order for images",
"enum": [
"Most Reactions",
"Most Comments",
"Newest"
],
"type": "string"
},
"username": {
"description": "Filter images by creator username",
"type": "string"
}
},
"type": "object"
}