Civitai Scraper
Pricing
from $2.00 / 1,000 results
Go to Apify Store
Civitai Scraper
Search and extract Civitai AI model listings, full model/download details, image gallery posts, creators, and tags -- no account or API key needed.
Civitai Scraper
Pricing
from $2.00 / 1,000 results
Search and extract Civitai AI model listings, full model/download details, image gallery posts, creators, and tags -- no account or API key needed.
You can access the Civitai Scraper programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in API & Integrations in Apify Console.
{ "openapi": "3.0.1", "info": { "version": "0.0", "x-build-id": "hudl50oAzgLV8PPNb" }, "servers": [ { "url": "https://api.apify.com/v2" } ], "paths": { "/acts/zucchini_gopher_m2v~civitai-scraper/run-sync-get-dataset-items": { "post": { "operationId": "run-sync-get-dataset-items-zucchini_gopher_m2v-civitai-scraper", "x-openai-isConsequential": false, "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.", "tags": [ "Run Actor" ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/inputSchema" } } } }, "parameters": [ { "name": "token", "in": "query", "required": true, "schema": { "type": "string" }, "description": "Enter your Apify token here" } ], "responses": { "200": { "description": "OK" } } } }, "/acts/zucchini_gopher_m2v~civitai-scraper/runs": { "post": { "operationId": "runs-sync-zucchini_gopher_m2v-civitai-scraper", "x-openai-isConsequential": false, "summary": "Executes an Actor and returns information about the initiated run in response.", "tags": [ "Run Actor" ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/inputSchema" } } } }, "parameters": [ { "name": "token", "in": "query", "required": true, "schema": { "type": "string" }, "description": "Enter your Apify token here" } ], "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/runsResponseSchema" } } } } } } }, "/acts/zucchini_gopher_m2v~civitai-scraper/run-sync": { "post": { "operationId": "run-sync-zucchini_gopher_m2v-civitai-scraper", "x-openai-isConsequential": false, "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.", "tags": [ "Run Actor" ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/inputSchema" } } } }, "parameters": [ { "name": "token", "in": "query", "required": true, "schema": { "type": "string" }, "description": "Enter your Apify token here" } ], "responses": { "200": { "description": "OK" } } } } }, "components": { "schemas": { "inputSchema": { "type": "object", "required": [ "mode" ], "properties": { "mode": { "title": "Mode", "enum": [ "models", "model-detail", "images", "creators", "tags" ], "type": "string", "description": "\"models\" searches/lists AI models with filters. \"model-detail\" fetches full detail (all versions, files, download URLs) for specific model ID(s). \"images\" searches the image gallery. \"creators\" lists/searches usernames. \"tags\" lists/searches tags.", "default": "models" }, "query": { "title": "Search query", "type": "string", "description": "Free-text search term. Used by \"models\" mode (searches model names), \"creators\" mode (searches usernames), and \"tags\" mode (searches tag names)." }, "tag": { "title": "Tag filter", "type": "string", "description": "\"models\" mode only -- only return models with this exact tag." }, "username": { "title": "Username filter", "type": "string", "description": "\"models\" or \"images\" mode -- only return items created by this exact username." }, "types": { "title": "Model types", "type": "array", "description": "\"models\" mode only -- only return models of these type(s). Leave empty for all types.", "items": { "type": "string", "enum": [ "Checkpoint", "TextualInversion", "Hypernetwork", "AestheticGradient", "LORA", "LoCon", "DoRA", "Controlnet", "Upscaler", "MotionModule", "VAE", "TextEncoder", "UNet", "CLIPVision", "Poses", "Wildcards", "Workflows", "ComfyWorkflows", "Detection", "VisionLanguage", "CLIP", "LLM", "Other" ] } }, "sort": { "title": "Sort order", "enum": [ "Highest Rated", "Most Downloaded", "Most Liked", "Most Discussed", "Most Collected", "Most Images", "Newest", "Oldest", "Most Reactions", "Most Comments", "Random" ], "type": "string", "description": "Order to return results in. \"models\" mode: Highest Rated / Most Downloaded / Most Liked / Most Discussed / Most Collected / Most Images / Newest / Oldest. \"images\" mode: Most Reactions / Most Comments / Most Collected / Newest / Oldest / Random." }, "period": { "title": "Time window", "enum": [ "Day", "Week", "Month", "Year", "AllTime" ], "type": "string", "description": "\"models\" or \"images\" mode -- only consider items from this time window.", "default": "AllTime" }, "nsfw": { "title": "NSFW filter (images mode)", "enum": [ "None", "Soft", "Mature", "X", "Blocked" ], "type": "string", "description": "\"images\" mode only -- filter by content rating. Leave empty for the platform default (safe-for-work only, unauthenticated)." }, "modelId": { "title": "Model ID", "type": "integer", "description": "\"model-detail\" mode: a single model ID. \"images\" mode: only return images generated with this model." }, "modelIds": { "title": "Model IDs", "type": "array", "description": "\"model-detail\" mode only -- multiple model IDs to fetch full detail for in one run.", "items": { "type": "string" } }, "modelVersionId": { "title": "Model version ID", "type": "integer", "description": "\"images\" mode only -- only return images generated with this specific model version." }, "postId": { "title": "Post ID", "type": "integer", "description": "\"images\" mode only -- only return images from this specific post." }, "maxItems": { "title": "Max items", "minimum": 1, "maximum": 10000, "type": "integer", "description": "Maximum number of results to return (for \"models\"/\"images\"/\"creators\"/\"tags\" modes). Pagination is followed automatically until this cap or the end of the result set, whichever comes first.", "default": 100 }, "maxConcurrency": { "title": "Max concurrent workers", "minimum": 1, "maximum": 16, "type": "integer", "description": "\"model-detail\" mode only -- how many model IDs to fetch in parallel.", "default": 4 }, "proxyConfiguration": { "title": "Proxy configuration", "type": "object", "description": "Apify Proxy configuration. Residential is on by default. Not required for this endpoint (no WAF was found -- it is Civitai's own official public API), but kept on for production robustness.", "default": { "useApifyProxy": true, "apifyProxyGroups": [ "RESIDENTIAL" ] } } } }, "runsResponseSchema": { "type": "object", "properties": { "data": { "type": "object", "properties": { "id": { "type": "string" }, "actId": { "type": "string" }, "userId": { "type": "string" }, "startedAt": { "type": "string", "format": "date-time", "example": "2025-01-08T00:00:00.000Z" }, "finishedAt": { "type": "string", "format": "date-time", "example": "2025-01-08T00:00:00.000Z" }, "status": { "type": "string", "example": "READY" }, "meta": { "type": "object", "properties": { "origin": { "type": "string", "example": "API" }, "userAgent": { "type": "string" } } }, "stats": { "type": "object", "properties": { "inputBodyLen": { "type": "integer", "example": 2000 }, "rebootCount": { "type": "integer", "example": 0 }, "restartCount": { "type": "integer", "example": 0 }, "resurrectCount": { "type": "integer", "example": 0 }, "computeUnits": { "type": "integer", "example": 0 } } }, "options": { "type": "object", "properties": { "build": { "type": "string", "example": "latest" }, "timeoutSecs": { "type": "integer", "example": 300 }, "memoryMbytes": { "type": "integer", "example": 1024 }, "diskMbytes": { "type": "integer", "example": 2048 } } }, "buildId": { "type": "string" }, "defaultKeyValueStoreId": { "type": "string" }, "defaultDatasetId": { "type": "string" }, "defaultRequestQueueId": { "type": "string" }, "buildNumber": { "type": "string", "example": "1.0.0" }, "containerUrl": { "type": "string" }, "usage": { "type": "object", "properties": { "ACTOR_COMPUTE_UNITS": { "type": "integer", "example": 0 }, "DATASET_READS": { "type": "integer", "example": 0 }, "DATASET_WRITES": { "type": "integer", "example": 0 }, "KEY_VALUE_STORE_READS": { "type": "integer", "example": 0 }, "KEY_VALUE_STORE_WRITES": { "type": "integer", "example": 1 }, "KEY_VALUE_STORE_LISTS": { "type": "integer", "example": 0 }, "REQUEST_QUEUE_READS": { "type": "integer", "example": 0 }, "REQUEST_QUEUE_WRITES": { "type": "integer", "example": 0 }, "DATA_TRANSFER_INTERNAL_GBYTES": { "type": "integer", "example": 0 }, "DATA_TRANSFER_EXTERNAL_GBYTES": { "type": "integer", "example": 0 }, "PROXY_RESIDENTIAL_TRANSFER_GBYTES": { "type": "integer", "example": 0 }, "PROXY_SERPS": { "type": "integer", "example": 0 } } }, "usageTotalUsd": { "type": "number", "example": 0.00005 }, "usageUsd": { "type": "object", "properties": { "ACTOR_COMPUTE_UNITS": { "type": "integer", "example": 0 }, "DATASET_READS": { "type": "integer", "example": 0 }, "DATASET_WRITES": { "type": "integer", "example": 0 }, "KEY_VALUE_STORE_READS": { "type": "integer", "example": 0 }, "KEY_VALUE_STORE_WRITES": { "type": "number", "example": 0.00005 }, "KEY_VALUE_STORE_LISTS": { "type": "integer", "example": 0 }, "REQUEST_QUEUE_READS": { "type": "integer", "example": 0 }, "REQUEST_QUEUE_WRITES": { "type": "integer", "example": 0 }, "DATA_TRANSFER_INTERNAL_GBYTES": { "type": "integer", "example": 0 }, "DATA_TRANSFER_EXTERNAL_GBYTES": { "type": "integer", "example": 0 }, "PROXY_RESIDENTIAL_TRANSFER_GBYTES": { "type": "integer", "example": 0 }, "PROXY_SERPS": { "type": "integer", "example": 0 } } } } } } } } }}OpenAPI is a standard for designing and describing RESTful APIs, allowing developers to define API structure, endpoints, and data formats in a machine-readable way. It simplifies API development, integration, and documentation.
OpenAPI is effective when used with AI agents and GPTs by standardizing how these systems interact with various APIs, for reliable integrations and efficient communication.
By defining machine-readable API specifications, OpenAPI allows AI models like GPTs to understand and use varied data sources, improving accuracy. This accelerates development, reduces errors, and provides context-aware responses, making OpenAPI a core component for AI applications.
You can download the OpenAPI definitions for Civitai Scraper from the options below:
If you’d like to learn more about how OpenAPI powers GPTs, read our blog post.
You can also check out our other API clients: