Civitai SDK
Civitai API client, generated from the OpenAPI spec.
This is an unofficial SDK for the Civitai public API, generated by Voxgig with @voxgig/sdkgen. It is not affiliated with, endorsed by, or sponsored by the upstream API provider.
TypeScript, Python, PHP, Golang, Ruby, Lua SDKs, a CLI, an interactive REPL, and an MCP server for AI agents — all generated from one OpenAPI spec by @voxgig/sdkgen.
Entities, not endpoints
This SDK exposes the API as a small set of semantic entities — Creator, Image, Model, ModelVersion and Tag — that you
call directly, instead of assembling URL paths and query strings. Entities are
Capitalised to mark them as the primary surface, each with the operations they
support (list, load):
const client = new CivitaiSDK()
const items = await client.Creator().list()
Thinking in entities keeps the mental model small — for people and AI agents alike — rather than reasoning about raw HTTP routes and query parameters.
Packages
| Language | Package | Install |
|---|---|---|
| TypeScript | @voxgig-sdk/civitai | publish pending — install from git tag |
| Python | voxgig-sdk-civitai | publish pending — install from git tag |
| PHP | voxgig-sdk/civitai | publish pending — install from git tag |
| Golang | github.com/voxgig-sdk/civitai-sdk/go | go get github.com/voxgig-sdk/civitai-sdk/go@latest |
| Ruby | voxgig-sdk-civitai | publish pending — install from git tag |
| Lua | voxgig-sdk-civitai | publish pending — install from git tag |
Quickstart
TypeScript
import { CivitaiSDK } from '@voxgig-sdk/civitai'
const client = new CivitaiSDK({
apikey: process.env.CIVITAI_APIKEY,
})
// List all creators (returns Creator[])
const creators = await client.Creator().list()
for (const creator of creators) {
console.log(creator)
}
See the TypeScript README for the full guide.
Surfaces
| Surface | Path |
|---|---|
| SDK (TypeScript, Python, PHP, Golang, Ruby, Lua) | ts/ py/ php/ go/ rb/ lua/ |
| CLI | go-cli/ |
| MCP server | go-mcp/ |
Use it from an AI agent (MCP)
The generated MCP server exposes every operation in this SDK as an MCP tool that Claude, Cursor or Cline can call directly. Build and register it:
cd go-mcp && go build -o civitai-mcp .
Then add it to your agent’s MCP config (Claude Desktop, Cursor, etc.):
{
"mcpServers": {
"civitai": {
"command": "/abs/path/to/civitai-mcp"
}
}
}
Entities
The API exposes 5 entities:
| Entity | Description | API path |
|---|---|---|
| Creator | The Creator entity (list). | /creators |
| Image | The Image entity (list). | /images |
| Model | The Model entity (list, load). | /models |
| ModelVersion | The ModelVersion entity (load). | /model-versions/by-hash/{hash} |
| Tag | The Tag entity (list). | /tags |
The operations available across these entities are load, list — see each entity’s own list above for exactly which it supports.
Quickstart in other languages
Python
import os
from civitai_sdk import CivitaiSDK
client = CivitaiSDK({
"apikey": os.environ.get("CIVITAI_APIKEY"),
})
# List all creators (returns a list, raises on error)
creators = client.Creator().list()
for creator in creators:
print(creator)
PHP
<?php
require_once 'civitai_sdk.php';
$client = new CivitaiSDK([
"apikey" => getenv("CIVITAI_APIKEY"),
]);
// List all creators (returns an array; throws on error)
$creators = $client->Creator()->list();
print_r($creators);
Golang
import sdk "github.com/voxgig-sdk/civitai-sdk/go"
client := sdk.NewCivitaiSDK(map[string]any{
"apikey": os.Getenv("CIVITAI_APIKEY"),
})
// List all creators
creators, err := client.Creator(nil).List(nil, nil)
fmt.Println(creators)
Ruby
require_relative "Civitai_sdk"
client = CivitaiSDK.new({
"apikey" => ENV["CIVITAI_APIKEY"],
})
# List all creators (returns an Array; raises on error)
creators = client.Creator.list
puts creators
Lua
local sdk = require("civitai_sdk")
local client = sdk.new({
apikey = os.getenv("CIVITAI_APIKEY"),
})
-- List all creators
local creators, err = client:Creator():list()
print(creators)
Unit testing in offline mode
Every SDK ships a test mode that swaps the HTTP transport for an in-memory mock, so unit tests run offline.
TypeScript
const client = CivitaiSDK.test()
const creator = await client.Creator().list()
// creator is a bare Creator populated with mock data
console.log(creator)
Python
client = CivitaiSDK.test()
creator = client.Creator().list()
print(creator)
PHP
// Seed fixture data so offline calls resolve without a live server.
$client = CivitaiSDK::test([
"entity" => ["creator" => ["test01" => []]],
]);
$creator = $client->Creator()->list();
Golang
client := sdk.Test()
result, err := client.Creator(nil).List(
nil, nil,
)
Ruby
# Seed fixture data so offline calls resolve without a live server.
client = CivitaiSDK.test({
"entity" => { "creator" => { "test01" => {} } },
})
creator = client.Creator.list()
Lua
local client = sdk.test()
local result, err = client:Creator():list()
Direct and prepare
For endpoints the entity model doesn’t cover, use the low-level methods:
direct(fetchargs)— build and send an HTTP request in one step.prepare(fetchargs)— build the request without sending it.
Both accept a map with path, method, params, query,
headers, and body. See the How-to guides below.
How-to guides
Make a direct API call
When the entity interface does not cover an endpoint, use direct:
TypeScript:
const result = await client.direct({
path: '/api/resource/{id}',
method: 'GET',
params: { id: 'example' },
})
if (result instanceof Error) {
throw result
}
console.log(result.data)
Python:
result = client.direct({
"path": "/api/resource/{id}",
"method": "GET",
"params": {"id": "example"},
})
PHP:
$result = $client->direct([
"path" => "/api/resource/{id}",
"method" => "GET",
"params" => ["id" => "example"],
]);
Go:
result, err := client.Direct(map[string]any{
"path": "/api/resource/{id}",
"method": "GET",
"params": map[string]any{"id": "example"},
})
Ruby:
result = client.direct({
"path" => "/api/resource/{id}",
"method" => "GET",
"params" => { "id" => "example" },
})
Lua:
local result, err = client:direct({
path = "/api/resource/{id}",
method = "GET",
params = { id = "example" },
})
Advanced
Everyday use only needs the sections above. This explains the internals behind every call — relevant when writing custom features.
Every SDK call runs the same five-stage pipeline:
- Point — resolve the API endpoint from the operation definition.
- Spec — build the HTTP specification (URL, method, headers, body).
- Request — send the HTTP request.
- Response — receive and parse the response.
- Result — extract the result data for the caller.
A feature hook fires at each stage (e.g. PrePoint, PreSpec,
PreRequest), so features can inspect or modify the pipeline without
forking the SDK.
Features
| Feature | Purpose |
|---|---|
| TestFeature | In-memory mock transport for testing without a live server |
Pass custom features via the extend option at construction time.
Per-language documentation
Upstream API
This SDK is generated from the upstream OpenAPI specification. It is an unofficial client and is not affiliated with the API provider.
- Upstream API: https://developer.civitai.com/docs/api/public-rest
Security
Please report security issues to security@voxgig.com. See SECURITY.md. Do not open public issues for suspected vulnerabilities.
Generated from the Civitai API OpenAPI spec by @voxgig/sdkgen.