Browse and download Civitai models, images, and articles β and author, validate, and submit App Blocks. Two paths in one static binary: an anonymous read/download client for the public API, and the toolchain for shipping Apps.
β οΈ Apps is in a limited, invite-only beta (pre-GA). You can install this CLI,login, scaffold, validate, and run an app locally right now β butcivitai app submitanddev:liverequire an invite: submission anddev:liveare limited to invited beta testers while the feature is in a limited (pre-GA) beta, until Apps opens to the public.Anyone can request an invite β open a request below and we'll review it:
The command-line interface for Civitai β a single static binary that does two things: it's a thin read/download client for Civitai's public API (browse and fetch models, images, and articles β no account needed to read), and it's the toolchain to author, validate, and ship Apps.
An App is a small, sandboxed web app that runs inside Civitai surfaces (it's served in an iframe; the platform owns the build and the runtime). The CLI replaces the error-prone "hand-format a ZIP" flow: it scaffolds a correct project, validates the manifest against the platform contract, and packages/submits it for review.
New here? The Build your first App guide is the full end-to-end walkthrough.
Pick whichever fits β npm is the most convenient if you already have Node
(App authors usually do); Homebrew is quickest on macOS/Linux; the prebuilt
binary needs no toolchain; go install builds from source.
A thin wrapper that downloads the matching prebuilt binary for your OS/arch on
install and verifies its sha256 against the release checksums.txt:
npm install -g @civitai/cli
# or run it without installing:
npx @civitai/cli --helpbrew install civitai/tap/civitaiThis repo is a Nix flake,
so you can run or install civitai without a Go toolchain (works on
x86_64/aarch64 Linux and macOS):
# Run without installing:
nix run github:civitai/cli -- models search "sdxl"
# Install into your Nix profile:
nix profile install github:civitai/cliPin it as an input in your own flake:
{
inputs.civitai-cli.url = "github:civitai/cli";
outputs = { self, nixpkgs, civitai-cli }: {
# e.g. add to a devShell / home-manager / systemPackages:
# civitai-cli.packages.${system}.default
};
}Download a prebuilt binary for your OS/arch from the
GitHub Releases page (linux, macOS,
windows Γ amd64/arm64), verify it against checksums.txt, then put it on your
PATH:
tar xzf civitai_*_linux_amd64.tar.gz
sudo mv civitai /usr/local/bin/
civitai versiongo install github.com/civitai/cli/cmd/civitai@latest
# installs the `civitai` binary into $(go env GOPATH)/binReads are anonymous β no login needed. Every command takes --json to
emit the raw API response for scripting.
# Search models β filter by base model, type, and sort:
civitai models search --base-model Illustrious --type Checkpoint --sort "Most Downloaded"
# --base-model works on any type, including embeddings (TextualInversion):
civitai models search --type TextualInversion --base-model "SDXL 1.0"
# Inspect a specific model or a specific model version:
civitai models get 4384
civitai model-versions get 128713
# Download a version's file(s) β SHA256-verified, streamed atomically.
# `--layout` routes each file into the right app subfolder (also `a1111`);
# `--dry-run` prints the plan without transferring. Downloads require `civitai login`.
civitai download 128713 --layout comfyui --root ~/ComfyUI
civitai download 128713 --dry-run
# Find and read articles (guides) right in the terminal:
civitai articles search --query "comfyui workflow"
civitai articles get 32680 --contentSee Browse the public API and Download model files below for the full command and flag reference (images, tags, creators, collections, pagination, folder routing, base-model compatibility checks, and more).
# 1. Authenticate once (browser device login; or `civitai login --token <t>`).
civitai login
# 2. Scaffold a ready-to-build App (batteries-included page-money default).
civitai app create my-app
cd my-app
# 3. Install deps and run it locally against the mock host (no real Buzz/compute).
# `npm run dev` alone renders blank β the harness supplies the host.
npm install
npm run dev:harness
# 4. Edit your app; build it, then check the manifest before submitting.
# (the `static` template has no build step β skip `npm run build`.)
npm run build
civitai app validate
# 5. Package + submit for review (uploads with your stored token by default).
civitai app submit
# 6. Check where your submission is in review / deploy.
civitai app statusWant to drive the real backend (real Buzz/compute) before submitting? Mint a dev token with
civitai app dev-tokenand runnpm run dev:liveβ see Local dev loop.
Submit β live.
civitai app submitenters your app into moderator review β it is not published immediately. The lifecycle is submit β review β approve β build + deploy βhttps://<blockId>.civit.ai/: that URL 404s until a moderator approves your submission and the platform builds + deploys it (a few minutes after approval). Until then, track status on/apps/my-submissions(a fresh submission sits atpending). See Submit & auth for the full flow. (And note Apps is in an invite-only beta β see the warning above.)
Enable shell completion (optional):
source <(civitai completion bash) # bash; see `civitai completion --help` for zsh/fish/powershellThis CLI scaffolds, validates, and submits β but the code your app actually
imports lives in two published npm packages (the page-money template wires
them for you; static and page-vite are deliberately dependency-free):
| Package | What it is |
|---|---|
@civitai/blocks-react |
The React hooks + iframe transport app authors call β useBlockContext, useBuzzWorkflow, useBlockResize, the /ui component pack, and the /testing dev hosts. Start here for the hook reference. |
@civitai/app-sdk |
The framework-agnostic contract under the hooks β manifest types, scope strings, the postMessage protocol, and the defineBlock validator (@civitai/app-sdk/blocks). |
# Already installed by the scaffold; this is the explicit install line:
pnpm add @civitai/blocks-react @civitai/app-sdk reactThe full hook-by-hook reference (with snippets) lives in each package's npm README. For the end-to-end walkthrough, see Build your first App.
| Command | What it does |
|---|---|
civitai login [--token [<t>]] [--no-browser] |
Browser OAuth device login by default (stores auto-refreshing tokens); --token <t> stores a personal API key instead. --token with no value prints where to create a personal key (civitai.com/user/account) and how to re-run β handy when you know you want a personal key but haven't minted one yet. Config at ~/.config/civitai/config.yaml, 0600. Also reads CIVITAI_TOKEN. |
civitai whoami [--scopes] [--json] |
Verify the stored token; print the authenticated user and a Capabilities section β credential type (OAuth login vs personal API key), Read Buzz balance, and Spend Buzz β decoded from the token's scope, so a money-path dead end (OAuth login can't spend) is visible before dev:live. --scopes also lists every granted scope; --json emits the user + credentialType/canReadBalance/canSpend/scopes (scriptable). |
civitai buzz [--json] |
Show your spendable Buzz balance (blue / green / yellow, plus a total). Needs a full-scope personal API key to read; an OAuth login token can't, and gets a clear "switch to a personal key" message. --json emits {blue,green,yellow,total} (scriptable β handy for before/after diffing a dev:live spend). |
civitai app create [name] [dir] [--template static|page-vite|page-money] [--dir <path>] [--name <display>] |
The friendly happy path. Scaffold a ready-to-build App, defaulting to the batteries-included page-money SDK template (default dir ./<slug>). |
civitai app init [name] [dir] [...] |
Same scaffolder as create with a no-build static default (back-compat alias). |
civitai app dev-token <slug> [--env] |
Mint a short-lived (~4h) dev block token for npm run dev:live β calls the invite-gated mint route with your stored credential, reading scopes from your local block.manifest.json (so it works on an unsubmitted slug). Prints the token (--env prints VITE_LIVE_BLOCK_TOKEN=<token>, paste-ready); warns at mint time if the token is read-only (can't spend). See Local dev loop. |
civitai app dev-tunnel [blockId] [--port] [--tunnel-endpoint] [--idle-timeout] |
(Pre-GA / dark) Preview your local dev server inside the real Civitai host at civitai.com/apps/dev/<blockId> β a prod-fidelity inner-dev-loop. Mints an ephemeral in-memory ssh keypair, opens a reverse tunnel from your dev port (start npm run dev:tunnel first) to the Civitai tunnel endpoint, prints the URL to open, and tears everything down on Ctrl-C or an idle timeout. Before minting it also pre-flights whether the host can actually embed your dev server β the host iframes it sandboxed (opaque null origin), so a dev server missing Access-Control-Allow-Origin: *, missing the .civit.ai entry in allowedHosts, or sending a framing header that excludes civitai.com loads as a blank iframe with no error anywhere. Those are printed as warnings (never fatal) just above the URL, with the vite.config.ts fix. Apps scaffolded by civitai app init --template page-money already satisfy all of it. Gated behind an Apps-author invite and a kill-switch flag that is off today, and the tunnel endpoint is not exposed yet β so it reports "not available" until it ships. |
civitai app validate [dir] [--strict] [--json] |
Best-effort local pre-check of block.manifest.json; emits non-fatal warnings (--strict fails on them). --json emits the structured result (ok, plus errors/warnings each with field/message) for scriptable parsing β still exits non-zero on failure. See Validate fidelity. |
civitai app submit [dir] [--package-only] [--out f.zip] [--skip-validate] |
Validate + package the source tree + upload it with your stored token (or, with no token, write the bundle + print next steps). |
civitai app status [blockId] [--id <pubreq>] [--json] |
Check the review/deploy status of your own submissions. No arg lists them all; a blockId (app slug) or --id shows one in detail (rejection reason if rejected, live URL once deployed). See Submission status. |
civitai app metrics <slug> [--from <d>] [--to <d>] [--json] |
Owner-only analytics for one of your Apps β installs, runs + Buzz spent, Buzz purchased, and API engagement. Always prints the window the server served (it defaults to 30 days and clamps to 366), so a zero is never ambiguous. Needs a personal API key (an OAuth login is refused). See App metrics. |
civitai app withdraw [pubreq-id] [--id <pubreq>] |
Withdraw your own pending submission (the pubreq_β¦ id from civitai app status). Frees the slug so a fresh civitai app submit can replace it. Idempotent; only a pending request can be withdrawn. See Submission status. |
civitai generate "<prompt>" [--negative-prompt <p>] [--quantity <n>] [--aspect-ratio <r>] [--checkpoint <version-id>] [--lora <version-id>[:strength]] [--image <path-or-url>] [--ecosystem <key>] [--input <file>] [--print-input] [--dry-run] [--json] [--max-cost <buzz>] [--yes] [--no-wait] [--timeout <dur>] [--out-dir <dir>] [--no-download] [--force] [--external-id <key>] |
Generate images from a text prompt β this SPENDS REAL BUZZ. Prices the job with the server's estimator, shows the cost + your balance, asks before spending, submits, then waits and downloads the results into --out-dir as <workflow-id>-<n>.<ext>. --no-wait prints the workflow id and exits; --timeout bounds the wait (never the job and never the charge); --no-download waits but prints URLs instead of writing files. --dry-run estimates and exits without submitting (--dry-run --json emits the raw estimate). --print-input prints the assembled graph and exits without reaching any money seam (no submit, no estimate, no balance read) β note that with --image it still uploads local files first, because the printed graph has to reference real blob URLs for --input to be able to submit it; uploading spends nothing; --input <file> (or - for stdin) sends a raw graph as-is β txt2img only, and mutually exclusive with the content flags. --image <path-or-url> (repeatable) attaches a reference image for image-to-image β a local png/jpeg is uploaded, an https URL is passed through β and requires --ecosystem, because without one the server ignores the images, generates from the prompt alone and charges anyway. Needs a personal API key with the AI Services scopes; an OAuth login is refused. --max-cost is an estimate check, not a spending cap. See Generate. |
civitai workflows list [--limit <n>] [--cursor <c>] [--tag <t>] [--json] |
List the generation workflows you have submitted, newest first β status, when, cost, and deliverable/total outputs. Cursor-paged: the next cursor is printed on stdout when more results exist. Reading spends nothing. See Generate. |
civitai workflows get <workflow-id> [--json] |
Look up one generation workflow β status, steps and outputs. This is how you re-attach after --no-wait, a --timeout expiry or a Ctrl-C. Outputs that are blocked, unavailable or hidden are listed with the reason rather than omitted. Output URLs are presigned and expire; re-run for fresh links. Reading spends nothing. See Generate. |
civitai workflows cancel <workflow-id> [--yes] [--json] |
Stop a running generation. π΄ This does not refund anything β a mid-run cancel bills the accrued cost, non-refundably. Cancel because you no longer want the output, never to save money. Asks for confirmation (default no); --yes skips the prompt and a non-TTY without it refuses. See Generate. |
civitai version |
Print version / commit / build date. |
civitai completion [shell] |
Generate a shell-completion script. |
Run civitai help, civitai app --help, or civitai <command> --help for the
full details and examples.
staticβ a no-build page app (index.html+ a tinyapp.js,block.manifest.jsonwithpage:{}, no build step).page-viteβ a Vite + React page app with config-as-code build fields (buildCommand: "npm run build"+outputDir: "dist").page-moneyβ a Vite + React + TypeScript full-page (W10) money-path app wired to the published App SDK (@civitai/blocks-react+@civitai/app-sdk): prompt β estimate β lazy consent β submit β poll β real Buzz spend, viauseBuzzWorkflow/useRequestConsent/useBlockResize(never rawpostMessage). Ships adev:harnessmock host,.env.*allowed parent-origin config, and a unit-test stub. Runnpm run dev:harness(plainnpm run devrenders blank without a host).
Every template declares a page surface, and the host will not reveal a page
app until the app posts BLOCK_READY β that handler is the only transition
into the host's ready state. An app that never sends it is replaced by a visible
failure card once the host's bounded retries run out, even though the app itself
renders perfectly. Nothing you can run locally reproduces that.
page-money gets the handshake for free: @civitai/blocks-react's iframe
transport acks internally, which is why the SDK templates never touch raw
postMessage. The two SDK-free templates (static, page-vite) therefore
ship a small vendored emitter, civitai-host.js, loaded from the entry
point. Leave it in place.
β οΈ If you adopt@civitai/blocks-react, deletecivitai-host.jsin the same change. This is the one situation where removing it is correct, and running both is worse than running neither: whichever handshake answers the host's firstBLOCK_INITcancels the host's retry loop and its readiness timeout. If the vendored emitter wins that race, the SDK transport can be left never having seen an init β itswaitForInitrejects after 10s and the host sits "ready", showing an app that never started, with no retry and no error card.
Two rules it encodes, which apply to every message you add afterwards:
- The envelope is
{ type, payload }. The host dispatchesevent.data.payloadto its subscribers, so fields put at the top level ({ type: 'X', height: 0 }) arrive aspayload: undefined. - Answer, don't announce. The ack goes out in response to the host's
BLOCK_INIT, addressed at the origin that init arrived from rather than broadcast to'*'. It is also why nothing is posted when you preview locally: there is no host to sendBLOCK_INIT, so the emitter stays silent by design.
π The emitter checks the sender window, not the sender's identity. It answers
window.parentβ whoever framed you β which is sound for this one message because the ack carries no data. It is not sufficient for anything you add next. The moment you handle an inbound message carrying a token, a viewer, storage or a result, checkevent.originagainst an allowlist of origins you trust, or any page that frames your app can feed it whatever it likes. The emitter deliberately does not vendor that allowlist β the real list (production, preview subdomains, dev tunnels) is platform state that moves without notice, and@civitai/blocks-reactalready maintains it fromVITE_BLOCK_ALLOWED_PARENT_ORIGINS. Adopt the SDK before you handle data.
RESIZE_IFRAME is not part of a page app's protocol: the host renders a
page block full-viewport, so it does not size to content and ignores the
message. (useBlockResize is surface-agnostic and page-money still calls it β
on a page surface it is simply a no-op, which is why the SDK templates can share
component code across surfaces.) The pre-#206 templates demoed a raw
postMessage of RESIZE_IFRAME, so a project scaffolded before that fix still
carries dead code you can delete. (This CLI's own CI fails if a shipped template
ever reintroduces it; there is no author-facing command that scans your project
for it β civitai app validate checks the manifest and the handshake, not this.)
A scaffolded App is a sandboxed iframe, and locally there is no host to send
BLOCK_INIT β so npm run dev shows you your own UI and nothing of the
protocol. The page-money template ships a dev harness (the SDK's
@civitai/blocks-react/testing
hosts) to close that gap, with two modes:
| Command | Mode | What it does |
|---|---|---|
npm run dev:harness |
mock (default) | Mounts the SDK mock host β synthetic replies, no real Buzz, no compute, no network. Safe to spam; drive money/error/insufficient-Buzz UX via on-screen scenarios or ? URL params. Start here. |
npm run dev:live |
live | Mounts the SDK live host (createLiveHost) β forwards the App protocol to the real Civitai backend with a pasted dev token (Bearer). Spends REAL Buzz / real compute. |
β οΈ dev:liveworks on a pending (un-approved) app. The dev-token mint (POST /api/v1/blocks/dev-token) accepts a pending slug β right after a successfulcivitai app submit(statuspending) it returns200withappId: pending-pubreq_β¦anddev:livemounts the live host against the pending app. For real generation you must mint with a full-scope personal API key; an OAuth (civitai login) token mints read-only (user:read:self) and cannot spend. Usecivitai buzz/civitai whoamito confirm your credential can spend before a live run.
Live mode needs a short-lived dev block token. Mint it with civitai app dev-token (the CLI handles the invite-gated POST /api/v1/blocks/dev-token
call with your stored credential β no hand-rolled curl) and paste it into
.env.development.local as VITE_LIVE_BLOCK_TOKEN=:
# From your scaffolded project dir (reads scopes from block.manifest.json):
civitai app dev-token my-block --env >> .env.development.local
npm run dev:live.env.development* is never committed (submit excludes it) and the token is
short-lived (~4h) β re-run dev-token when it expires. Mint with a full-scope
personal API key for real generation; an OAuth login mints a read-only token
(the command warns you at mint time). With no token, dev:live fails safe
(renders a notice, never spends). Live v1 covers the money path
(estimate/submit/poll/cancel); pickers, checkpoint-set, App-Storage KV,
and in-band Buzz purchase are mock-only.
Under the hood (the scaffold wires this β you don't configure it): dev:live
routes the live host's backend calls through the vite dev proxy
(server.proxy['/api']), not straight to civitai.com: createLiveHost fetches
/api/... SAME-ORIGIN against the dev server (localhost:5186), and vite proxies
that server-side to civitai with the Origin header rewritten to an allowlisted
host. This is load-bearing β a direct cross-origin fetch from localhost is both
blocked by CORS preflight and rejected by civitai's tRPC origin gate. The
same-origin proxy + Origin rewrite fixes both. VITE_LIVE_HOST_ORIGIN overrides
the proxy target (default https://civitai.com).
Which credential can spend? Only a full-scope personal API key can spend
Buzz β whether that is a real dev:live generation in your app or a
civitai generate run from the terminal. The default OAuth login
can't do either:
| Credential | Can spend Buzz? (dev:live, civitai generate) |
How to get it |
|---|---|---|
| Personal API key (full scope) | β Yes β estimate β submit β generation β real Buzz | create it in the web UI at civitai.com/user/account, then civitai login --token <key> (a personal key carries AI Services) |
civitai login (OAuth, default) |
β No β viewer + catalog + app storage only | the civitai-cli client has no AI Services scope, so the server strips the spend scope β fine for read/identity dev:live, not for generation |
This is the single most common blocker for civitai generate: an OAuth login
looks perfectly valid, and the refusal is a scope problem, not a login problem β
re-running civitai login will not fix it. civitai whoami shows the capability
as Spend Buzz (AI Services).
You can't mint a personal key over OAuth or the CLI (apiKey.add returns 403
without a full-scope session) β create it in the web UI. The dev token always grants
user:read:self, so your viewer resolves on either path. For the scope mechanics
behind this, see Submit & auth.
Env vars (VITE_BLOCK_ALLOWED_PARENT_ORIGINS, VITE_HARNESS_MODE,
VITE_LIVE_BLOCK_TOKEN, β¦) and the scenario knobs are documented in depth in the
scaffolded project's own README.md and .env.example β see
internal/scaffold/templates/page-money/README.md.tmpl.
Two real example manifests live under examples/ (copied from the
civitai-block-* dogfood apps). Read them for manifest shape β between them
they cover the required fields, $schema wiring, the page/iframe blocks, and
scope declarations with justifications:
The values are those apps' own choices, not recommendations. In particular don't
copy buzz-generator's page.buzzBudgetPerGen β it is a safety ceiling against a
malicious or compromised app, not an estimate of one run, so size your own from the
field's description in the canonical schema
(notepad doesn't take the budgeted scope, so it has no budget at all).
Both validate clean (examples_test.go asserts this so the claim stays true) β
schema conformance only, which says nothing about whether a value is well-sized.
Beyond authoring Apps, the CLI is a thin client for Civitai's public read REST
API (GET /api/v1/**). These subcommands work anonymously β no login
needed, because the data is public β but when you're logged in your stored token
is sent automatically (pass --anon to force a no-auth request). Every command
also takes --json to print the raw API JSON response for scripting.
| Command | What it does | Notable flags |
|---|---|---|
civitai models search |
Search models (GET /api/v1/models) |
--query, --tag, --username, --type, --base-model (repeatable), --sort, --period, --nsfw; paging --limit (β€100), --page, --cursor |
civitai models get <id> |
Get one model by id | --json, --anon |
civitai model-versions get <id> |
Get a model version by id (alias mv) |
--json, --anon |
civitai model-versions by-hash <hash> |
Look up a model version by file hash (AutoV2, SHA256, β¦) | --json, --anon |
civitai download <version-id> |
Download a model version's file(s) | --model, --file, --all, --out, --out-dir, --layout, --root, --for-base, --no-verify, --force, --anon |
civitai images search |
Search images (GET /api/v1/images) |
--model-id, --model-version-id, --post-id, --username, --base-model (repeatable), --type (image/video/audio), --sort, --period, --nsfw, --meta (include generation metadata); paging --limit (β€200), --page, --cursor |
civitai tags search |
Search model tags | --query; paging --limit (β€200), --page |
civitai creators search |
Search creators | --query; paging --limit (β€200), --page |
civitai users get <username-or-id> |
Look up a user via public search (a number = exact id; a name = exact-username match, else it lists close matches) | --json, --anon |
civitai articles search |
Search articles (GET /api/v1/articles) |
--query, --tags, --username, --sort, --nsfw; paging --limit (β€100), --cursor |
civitai articles get <id> |
Get one article by id (--content renders the article body as readable text/markdown) |
--content, --json, --anon |
civitai collections search |
Search public collections (GET /api/v1/collections) |
--query, --sort, --nsfw; paging --limit (β€100), --cursor |
civitai collections get <id> |
Get one collection by id | --json, --anon |
Pagination. List commands print a compact footer with the next-page hint.
models/images support both shallow --page and deep --cursor paging (the
API caps page*limit at 1000 and 429s beyond it β prefer --cursor for deep
paging); articles/collections are cursor-only (keyset feed β no
--page); tags/creators are --page-only. Each endpoint caps --limit
(models/articles/collections 100; images/tags/creators 200).
civitai models search --query "pony" --limit 5
civitai models get 4384
civitai model-versions by-hash 5D8D26E2A6
civitai articles get 32680
civitai articles get 32680 --content # render the article body (the guide) as readable text/markdown
civitai images search --model-id 4384 --sort "Most Reactions" --json # raw JSON for scriptingFiltering by base model. --base-model is repeatable and maps to the REST
baseModels filter (an OR across the values). It's the key discovery filter for
things --type can't separate β e.g. video checkpoints all share
--type Checkpoint and are distinguished only by base model. It works on both
models search and images search:
civitai models search --type Checkpoint --base-model "Wan Video 2.2 T2V-A14B"
civitai models search --base-model Pony --base-model Illustrious --limit 20
# images too β find recent-popular images generated with a given base model:
civitai images search --base-model "Krea 2" --sort "Most Reactions" --period Week
civitai images search --type video --sort "Most Reactions" # videos onlyGeneration metadata (--meta). By default the image list is a compact table
without generation data (matching the API, which omits meta unless asked). Add
--meta to include each image's prompt, sampler, cfg, steps, seed, and model β
rendered as an indented detail block per image (the table can't hold a prompt).
Images whose uploader chose to hide their generation data show
meta: (hidden by uploader). With --json, --meta adds the raw meta object
to each item.
civitai images search --nsfw --sort "Most Reactions" --period Month --meta
civitai images search --model-version-id 128713 --meta --json | jq '.items[].meta'The human table includes a BASE MODEL column (the base model each image was
generated with, when the API reports one; - when it doesn't), so you can see
the ecosystem at a glance without dropping to --json.
--sort is ignored with --model-id. The REST API returns images for a
given modelId in its own default order regardless of sort, so
images search --model-id <id> --sort β¦ prints a one-line note on stderr and the
results are NOT re-sorted. (--model-version-id is unaffected β it honours
--sort.)
Non-weights file marker. In the human (non---json) output of
models get and model-versions get, a version whose primary file is not
model weights (type != "Model") is tagged with its actual file type β e.g.
[Archive] (a "Workflows" model's downloadable deliverable), [Training Data],
or [Other] β so you can see at a glance that the version's file isn't weights.
It's purely informational: any file type still downloads. --json output is an
unchanged raw passthrough.
civitai download fetches the file(s) of a model version. Identify the
version deterministically by its numeric version id, or resolve a model's
default (first) published version with --model:
civitai download 128713 # the version's primary file β ./<server-name>
civitai download --model 4384 # resolve model 4384's default version, then download its primary file
civitai download --model 4384 --dry-run # print the plan (files, sizes, hashes, targets) β download nothing
civitai download 128713 --out ./dreamshaper.safetensors
civitai download 128713 --file vae --out-dir ./models # pick a file by name; write into a dir
civitai download 691639 --file 1234567 # pick one of two same-named files by its file id
civitai download 128713 --all --out-dir ./models # every file in the version
civitai download 128713 --all --layout comfyui --root ~/ComfyUI # route each file to its type folder
civitai download 128713 --layout a1111 --for-base "SDXL 1.0" # A1111 layout + base-model compat warningDownloads require authentication. Every model-file download needs a token β even a small public embedding 401s anonymously. Run
civitai loginfirst. The read/search commands work anonymously; downloads do not.--anonis meaningful for the read commands, not fordownload.
Behavior:
-
Identifier β exactly one of the positional
<version-id>or--model <model-id>is required (no numeric-ambiguity guessing). -
--modelresolves the default version β the model's default (first published) version; its primary file is downloaded regardless of file type. Any model type works, including atype: Workflowsmodel whose deliverable is a downloadableArchive. -
--dry-runβ resolve the version + selected file(s) and print the plan (each file's name, size, SHA256, resolved target path, and whether authentication will be required) then exit0, transferring nothing and creating no file (not even a.part). Works with--file,--all,--model,--out,--out-dir, and--layout/--root(the plan shows the routed target paths). -
File selection β defaults to the version's primary file.
--fileselects one file by numeric file id (the version'sfiles[].id) or by name (exact, else a unique case-insensitive substring; ambiguous/none errors and lists the candidate files with their ids).--alldownloads every file. -
Same-named files (no silent overwrite) β a version can ship two files that share a name (e.g. Flux Dev's fp16 and fp8, both
flux_dev.safetensors). Selecting that shared name with--fileis ambiguous and errors, listing both files with their ids β pass the numeric id to pick exactly one (--file 1234567; the id is shown by--dry-runand in the error).--allrefuses to run when two selected files would resolve to the same on-disk path (which would silently clobber one) β it fails before transferring anything, lists the colliding files with their ids/sizes, and tells you to pick one with--file <id>(or write them to separate paths). No download ever silently overwrites another. -
Output β
--out <path>sets an exact target path (single file only).--out-dir <dir>writes server-named files into a directory (works with--all). Parent directories are created as needed. Default is the server-provided filename in the current directory. -
Type-aware folder routing (
--layout) β--layout <a1111|comfyui>writes each file into the correct subfolder for that app, keyed by the file/model type, under--root <dir>(default.). This fixes the footgun where--all --out-dir Xdumps a bundled VAE into the checkpoint folder and pollutes the model dropdown: with--layout, the checkpoint lands in the checkpoints folder and the VAE in the VAE folder.--layoutis mutually exclusive with--out/--out-dir;--rootonly applies with--layout. An unmapped type (Poses, Wildcards, Archive, β¦) is written to--rootwith a stderr note rather than silently misplaced. The routed folder maps:Civitai type A1111 / Forge ComfyUI Checkpoint models/Stable-diffusionmodels/checkpointsVAE (standalone or bundled) models/VAEmodels/vaeLORA / LoCon / DoRA models/Loramodels/lorasTextualInversion (embedding) embeddingsmodels/embeddingsHypernetwork models/hypernetworksmodels/hypernetworksControlnet models/ControlNetmodels/controlnetUpscaler models/ESRGANmodels/upscale_models(Sources: the AUTOMATIC1111 wiki + the sd-webui-controlnet
models/ControlNetdefault; the ComfyUI models docs.) -
Mis-file warning (without
--layout) β when--allwould place files of differing types into one directory (the mis-file footgun), the CLI prints a one-line stderr warning naming the off-type file(s) and suggesting--layout. It's a warning, not an error; a single-type download stays quiet. -
Base model + compatibility (
--for-base) β the version's base model is always shown in the plan/output.--for-base "<baseModel>"warns on stderr when the version's base model is in a confidently different family than your target (e.g. anSD 1.5embedding like EasyNegative downloaded for anSDXL 1.0model β won't work; the wrong VAE β black images). The check is conservative β it groups the common bases into architecture families (SD1.x, SD2.x, the SDXL family [SDXL/Pony/Illustrious/NoobAI, treated loosely], SD3, Flux, video, β¦) and only warns on an architecture-level mismatch, never on near-neighbours (Pony vs Illustrious) or unclassifiable bases. -
Streaming + atomicity β the body streams to
<target>.partand is renamed into place only on success, so an interrupted run never leaves a truncated final file. Large files (10+ GB) are never buffered in memory. TTY-aware progress is printed to stderr. The Civitai download URL 302-redirects to signed storage; the CLI follows it. -
Auth β your stored login token (
civitai login) orCIVITAI_TOKENis used automatically; Civitai requires a token to download any model file, even public ones, so an anonymous download gets an actionable 401 (401β runcivitai login;403β the file is gated for your account).--anonforces no token. -
Transient-failure retry (reads) β the read endpoints (search / model / version / images / tags / creators / users / articles / collections) retry a transient
502/503/504or network error a few times with exponential backoff (with jitter), noting each retry on stderr. A429is retried only when it carries aRetry-Afterheader (a genuine throttle, honored up to a cap); a429withoutRetry-Afteris Civitai's deterministic deep-paging limit and is surfaced immediately with the hint to use--cursorinstead of--page. The download stream is not retried mid-transfer. -
Integrity (default on) β the streamed bytes are verified against the file's
SHA256; a mismatch deletes the.partand fails.--no-verifyskips it; a file with no published SHA256 downloads with a warning (not a hard failure). Note that SHA256 verifies integrity (the bytes match what the API advertised), not authenticity β it proves the download wasn't corrupted or truncated in transit, but a compromised source that advertises a matching hash for malicious bytes cannot be detected by the hash alone. Only download models from creators you trust. -
Pickle/archive safety note β when a downloaded file has a pickle/executable extension (
.ckpt,.pt,.pth,.bin,.pickle,.pkl) or an archive extension (.zip,.tar,.tar.gz,.tgz,.rar,.7z), the CLI prints a one-line stderr note: these formats can execute arbitrary code when loaded by ComfyUI/A1111/torch.load, and they land in folders those apps auto-scan.safetensorsand image files are inert and get no note. The note is informational β it never blocks the download. -
ControlNet preprocessor note β when the parent model is a ControlNet, the CLI prints a one-line stderr note: a ControlNet model needs a matching preprocessor/annotator (e.g. the ComfyUI
comfyui_controlnet_auxcustom node β OpenPose/Canny/Depth) to derive the control image from your input, and that preprocessor is a separate install, not hosted on Civitai. The note is informational β it never blocks the download. -
Idempotency β an already-present target (that verifies, or with
--no-verify) is skipped with a note;--forcere-downloads. -
Any file type downloads β the selected/primary file is downloaded whatever its
type(Modelweights, atype: Workflowsmodel'sArchive, training data, or other artifacts). The humanmodels get/model-versions getoutput tags a non-weights primary file with its type (e.g.[Archive]) purely for information; it never blocks a download.
Every read subcommand takes --json, which prints the raw /api/v1/... REST
response β a stable passthrough, not a CLI-invented shape. So the field schema
is exactly the public Site API's; keep the
REST field reference open
(e.g. models,
model-versions)
rather than reverse-engineering fields with jq keys.
Two properties make the output safe to pipe:
--jsonstdout is pure JSON β nothing else is written to stdout, so... --json | jq -e .always parses.- Errors go to stderr with a non-zero exit β a failed call writes the error
to stderr, exits non-zero, and prints nothing to stdout, so
jqnever sees error prose. For examplecivitai model-versions get 999999999 --jsonexits4withError: not found (404): Model not foundon stderr and an empty stdout.
Both properties hold for civitai generate and civitai workflows β¦ too, but
their payloads are not Site API REST shapes β generation has no REST route,
so those commands pass through the raw orchestrator reply. Read
Generation --json before scripting against them.
For deep paging use --cursor (not --page β the API caps page*limit at
1000 and 429s beyond it). Read .metadata.nextCursor from each response and feed
it back via --cursor; stop when it's absent/null:
export CIVITAI_NO_UPDATE_CHECK=1
cursor=""
while :; do
page=$(civitai models search --type LORA --base-model Illustrious \
--sort "Most Downloaded" --limit 5 ${cursor:+--cursor "$cursor"} --json) || break
echo "$page" | jq -r '.items[].id' # do your work here
cursor=$(echo "$page" | jq -r '.metadata.nextCursor // empty')
[ -z "$cursor" ] && break # no more pages
doneThe CLI runs a background check for a newer release and prints a nag to
stderr. In scripts, silence it with CIVITAI_NO_UPDATE_CHECK=1 (env) or
--no-update-check (flag). Either way stdout stays pure JSON β the nag never
touches stdout β but suppressing it keeps stderr clean for logs.
civitai generate --dry-run --json, civitai workflows list --json and
civitai workflows get <id> --json emit the raw orchestrator payload. Two
caveats have bitten people, and neither shows up as an error:
-
Output URLs are presigned and EXPIRE. The links in a workflow payload are short-lived signatures, not durable addresses. A pipeline that stores them and fetches later gets a 401/403 from the storage host that no credential can fix β re-run
civitai workflows get <id>for fresh links instead of caching the old ones. (Fetch them with noAuthorizationheader; they are already authorized, and the CLI deliberately attaches nothing to them.) -
--jsonstill exits0when the job is not generatable.--dry-run --jsonprints the estimate and exits0even when the payload says"ready": false, which means the server has already decided it cannot serve this job (an unavailable or unsupported resource). A human--dry-runprints a warning and a real submit refuses outright, but a script reading only the exit code sees success. Branch on the field, exactly asapp metricsrequires branching onnotOwned:q=$(civitai generate "a cat" --checkpoint 128713 --dry-run --json) || exit $? [ "$(echo "$q" | jq -r .ready)" = "true" ] || { echo "not generatable" >&2; exit 1; } echo "$q" | jq -r .cost.total
Cost keys (
cost.factors,cost.fixed) are server-owned and passed through verbatim, so treat them as an open map rather than a fixed set.
- SHA256 is UPPER-case in the API/
--json(e.g.42BA94DF20CC0F4E6DF46E3C294587A2F8CF133BF0134185884EE1C9C5E108C4), whilesha256sumemits lowercase. Case-fold before comparing if you roll your own verify (civitai download's built-in check is already case-insensitive):[ "$(echo "$api_sha" | tr A-Z a-z)" = "$(sha256sum file | cut -d' ' -f1)" ]. models searchalready embeds.modelVersions[]β each item carries its full versions, includingfiles[].hashes.SHA256andtrainedWords. If you're iterating search results you usually don't need a follow-upmodel-versions getper version.- Creator + model-level download counts live only in the search response.
model-versions get <id>returns a version, whose.modelis just{name, type, nsfw, poi}β nocreator, no modelstats.downloadCount. If you started from a version and need those, fetch them frommodels search/models getand join on the model id (.modelIdon the version).
Search β pick versions with jq β hand each version id to download with app
folder routing. --dry-run prints the plan (files, sizes, hashes, target paths)
without transferring, so this snippet is safe to copy-paste:
export CIVITAI_NO_UPDATE_CHECK=1
civitai models search --type LORA --base-model Illustrious \
--sort "Most Downloaded" --limit 3 --json |
jq -r '.items[].modelVersions[0].id' |
while read -r vid; do
civitai download "$vid" --layout comfyui --root ~/ComfyUI --dry-run
doneDrop --dry-run (and civitai login first) to actually fetch the files β
--layout comfyui routes each into its ComfyUI type folder.
civitai app validate is a best-effort LOCAL mirror of the platform's
approve-time validator (BlockManifestValidator). The server is the source of
truth at review time β passing validate locally is a strong pre-check, not a
guarantee of approval.
It checks block.manifest.json against a vendored JSON Schema
(schema/app-block.manifest.schema.json,
syntactic shape) plus the ported semantic rules the server runs (sandbox
trust-tier allowlist, page β iframe, required iframe sub-fields, the
renderMode tier gate, targets[].slotId registry membership) and structural
project checks. A few checks are necessarily approximate locally (the slot
registry is vendored; per-app origin-binding/scope checks the CLI can't see are
not reproduced).
It also mirrors one build-time rule, because the failure it prevents is
otherwise an opaque server-side "build failed": your committed lockfile must
match the package manager the platform derives from buildCommand. The
platform build installs strictly from the lockfile β no registry re-resolve
fallback β so "buildCommand": "pnpm run build" needs pnpm-lock.yaml,
"yarn run build" needs yarn.lock, and npm run β¦ / vite build /
npx vite build / an omitted buildCommand all need package-lock.json. A
mismatch or a missing lockfile is a hard validate error; an extra unused
lockfile is a warning. Apps with no package.json are static β the platform
never installs for them and they are never flagged.
Finally it emits one advisory about the
host handshake: if your manifest declares a
page surface and nothing in your source posts BLOCK_READY, validate
says so. That is the shape of an app scaffolded before the templates were fixed
(#206) β it renders perfectly everywhere you can look locally and is replaced by
a failure card in the real host. It is a warning, never an error: unlike the
lockfile rule (where the platform build provably dies), this one infers
runtime behaviour from static text and can be wrong, so it must not fail a
correct project. Three things follow:
- A dependency that acks ends the check β today that is
@civitai/blocks-react, and nothing else. Its iframe transport acks internally and the literal never appears in yoursrc/, so apage-moneyapp is never flagged. This is an exact list, not the@civitai/scope:@civitai/app-sdkis the server-side SDK and no runtime code in it postsBLOCK_READY, and@civitai/theme/@civitai/componentsare CSS. Depending on those does not give you the handshake, so it does not silence the check either. - It reads source only β never
node_modules, never the conventional build directories (dist,build,out, β¦), and never a.mdfile: a README describing the handshake is not an implementation of it. Comments are stripped too, so a comment namingBLOCK_READYdoes not satisfy it. Asrcthat is a symlink into a shared package is followed. - It stays quiet when it cannot see the whole project. An unreadable file, a file over 2 MiB, a very large tree, or a directory holding only a manifest all mean "we could not look" β reported as nothing, never as a finding.
If it fires on a project you know is correct β your ack arrives from a bundled
dependency, or from a file type this scan doesn't open β it is a false alarm, and
it never blocks (exit 0) unless you pass --strict. What it proves is narrow:
that the message is mentioned in code. It cannot prove the ack ever fires;
only the real host can.
civitai app submit prints the same warnings before it uploads, and likewise
does not block on them.
β οΈ If you already runcivitai app validate --strictin CI, this advisory is new and can turn a previously-green project red β which is what--strictasks for. If it is a false alarm for your project, drop--strictor add the ack, and please open an issue: a warning at a correct project is a bug in the check, not something you should have to work around.
The durable fix is a server-side civitai app validate endpoint that calls
the real BlockManifestValidator (the faithful contract), with this schema
published as the syntactic half. See AGENTS.md for the full
caveat and how the vendored schema + Go checks are kept in sync.
civitai login (no flags) runs the OAuth device-authorization grant: it
prints a URL + a short code, you approve in your browser, and the CLI stores a
short-lived access token (1h) plus a refresh token (30d) that it rotates
automatically before requests and once on a 401. It requests the scopes
UserRead | AppBlocksSubmit (== 33554433, exactly the civitai-cli OAuth
client's allowedScopes) β identity plus Apps submit, which gates both
app submit and the dev-token mint. It deliberately does not request
AIServicesWrite: the server's device-flow scope check is all-or-nothing, so
asking for a scope the client doesn't allow would reject the whole login. A
login token therefore drives the read/identity dev:live paths (viewer,
catalog, app storage) but β for a generation app whose only ai:write:budgeted
scope is stripped β cannot estimate, submit, or spend real Buzz. For real
generation use a full-scope personal API key (see the credential table under
Local dev loop above), which carries AI
Services.
civitai login --token <key> stores a personal API key instead (no refresh).
CIVITAI_TOKEN overrides the stored credential (treated as a personal key).
civitai app submit:
- always validates + packages the canonical source ZIP, then
- uploads it with your stored token to the token-authenticated route
POST /api/v1/blocks/submit-version(Authorization: Bearer). OAuth tokens refresh transparently. SetCIVITAI_SUBMIT_PATHto override the route. - With no token configured (and not
--package-only), it instead writes the.zipand prints the next steps (civitai login, or web upload at/apps/submit).
--package-only always just writes the .zip and stops.
A successful submit does not publish your app β it queues it for
moderator review. The lifecycle is:
- submit β your submission lands at
/apps/my-submissionswith statuspending. - review β a moderator reviews the manifest + files. They either approve or reject (with a reason you can read inline, then fix and resubmit).
- deploy β on approval, the platform builds and deploys your app
(injects its build recipe β builds the image β deploys β programs the
<blockId>.civit.aiDNS record). A few minutes after approval it serves live athttps://<blockId>.civit.ai/.
Before approval, https://<blockId>.civit.ai/ 404s β submitting does not
make the subdomain serve (but dev:live works against a pending app β see
Local dev loop). For the full end-to-end
walkthrough (build β submit β review β deploy), see the
Build your first App
guide.
Need to change the bundle while a request is still pending? Withdraw it
first to free the slug, then resubmit:
$ civitai app status # find the pubreq_ id
$ civitai app withdraw pubreq_01HZX # frees the slug
$ civitai app submit # resubmit the new bundle
civitai app withdraw <pubreq-id> (or --id <pubreq>) withdraws your own
pending publish request. It is idempotent (an already-withdrawn request still
returns success) and only a pending request can be withdrawn β an already
approved/rejected one cannot.
civitai app status checks where your own submissions are in that lifecycle
without leaving the terminal. It calls the token-authenticated, self-scoped route
GET /api/v1/blocks/submissions with your stored credential β you only ever see
your own submissions (the same token that submitted can read its status; OAuth
tokens need the Apps submit scope).
With no argument it lists every submission, newest first:
$ civitai app status
BLOCK_ID VERSION STATUS DEPLOY SUBMITTED URL
gen-matrix 0.6.0 approved live 2026-06-22 https://gen-matrix.civit.ai/
my-block 0.2.0 pending - 2026-06-21 -
old-app 0.1.0 approved building 2026-06-19 -
Pass a blockId (app slug) or --id <pubreq_id> to see one in detail β including
the rejection reason if it was rejected (so you can fix + resubmit) and the
live URL once it is approved and deployed:
$ civitai app status gen-matrix
Block ID: gen-matrix
Version: 0.6.0
Publish request: pubreq_01HZX
Status: rejected
Deploy state: -
Submitted: 2026-06-22 09:05 CDT
Reviewed: 2026-06-22 11:40 CDT
Rejection reason:
the budgeted scope needs the per-app Sybil cap signed off first
Not live yet β gen-matrix.civit.ai only serves after the app is approved and deployed (deployState 'live').
The unfiltered listing is capped server-side at 100 rows, and the API returns no cursor and no total β so there is no way to page and no way to know how many were dropped. When a full-length page comes back the CLI says so on stderr rather than presenting it as your complete history:
note: showing the newest 100 submissions β the API caps this listing and offers no way to page, so older submissions may exist but are not listed. Look up a specific app with `civitai app status <blockId>`.
That is an inference (a page that is exactly full is indistinguishable from one
that was cut off), so it says may. A per-app lookup β civitai app status <blockId> β is not affected: the server narrows to the slug before applying
the cap.
--json emits the raw response for scripting. An empty list prints a friendly
"run civitai app submit" hint; with no token it points you at civitai login.
Notes like the cap caveat go to stderr, so --json stdout stays pure and the
exit code stays 0.
civitai app metrics <slug> shows the owner-only analytics for one of your
App Blocks. The slug is resolved to its appBlockId through your own
submissions, so analytics exist only once a version has been approved β an
app still in review reports that instead of an empty dashboard.
$ civitai app metrics gen-matrix --from 2026-05-01 --to 2026-08-03
App: gen-matrix
Window: 2026-05-01 00:00 UTC β 2026-08-03 00:00 UTC
Granularity: week
Installs
Total 12
Active 9
Runs
Count 20
Buzz spent 65
Buzz purchased
Purchases 3
Buzz 15000
Gross $14.97
App loads
Impressions 124
Unique viewers 12
Signed-out loads 40
Engagement
API calls 26
Active users 2
Error rate 3.8%
Top scopes:
ai:write:budgeted 20
Top endpoints:
/api/v1/blocks/me 4
Three things are worth knowing, because each one otherwise produces a believable-but-wrong reading:
- The window is always printed, and it comes from the server. The API
defaults to the last 30 days and clamps any request to 366 days, so a
real app with 20 runs in mid-June reads
0under the default window. The window shown is the one the server actually served β if it clamped your--from, the printed range says so. Widen it with--from/--to, which accept a plainYYYY-MM-DD(midnight UTC) or a full RFC3339 timestamp; a malformed value or an inverted window is a usage error (exit2) caught before any request. - "Not entitled" is not "zero". When the caller doesn't own the app (or
lacks Apps-author access) the API answers HTTP 200 with every counter
zeroed, flagged only by a
notOwnedfield. The CLI refuses to render a dashboard in that case and tells you to checkcivitai whoami/civitai app status <slug>instead β a silently-empty dashboard that looks like real data is the failure mode this command is built to avoid. - It needs a personal API key. The query is full-scope, so an OAuth
civitai logintoken gets a 403; the error names the fix (civitai login --token <key>).
Two data caveats.
Engagement counts only authenticated, scope-gated API
calls. An app that ships no scoped API surface shows real installs and revenue
with a flat engagement section β that is expected, not a bug. Installs is a
different case again: it shows n/a for an app that cannot be installed at
all (a page app has no install slot, so an install record cannot exist), which
is deliberately distinct from a real 0 on an installable app nobody has
installed yet. App loads is the exception: it is measured on every load, so it counts signed-out visitors and
static blocks that engagement structurally cannot see. Unique viewers counts
signed-in people once each and approximates signed-out ones by network address,
so read it as reach rather than an identity count, and Signed-out loads is a
count of LOADS (one anonymous visitor reloading ten times is 10 there and 1
unique viewer), so it can legitimately exceed Unique viewers. Note also that
these are mount ATTEMPTS: a load that FAILED still counts, because a failed
mount's only beacon is the same event and it carries no status. Error rate is the
share of those calls that failed, and the human view renders it as a percentage
(the server sends it as a 0β1 ratio, which --json passes through unchanged).
Only a genuine zero prints 0.0%: a real but tiny rate β a high-traffic app with
a handful of failures β reads <0.1% rather than rounding away to look
error-free.
--json emits the raw analytics payload (the server's own object, including
notOwned and the per-bucket series arrays the human view omits) for
scripting. Note that --json does not refuse a not-entitled read the way the
human view does: a notOwned: true payload is passed through with every
counter zeroed and the command still exits 0, so
civitai app metrics <slug> --json | jq .runs.count returns 0 for an app you
can't see. A script must branch on the notOwned field rather than trusting the
counts.
Installs carries installs.notApplicable for the case above. It is NOT an
outage flag β it means the question does not apply to this app type, so a script
should render it as "not applicable" rather than retrying or warning about
infrastructure. --json passes it through and still exits 0, so branch on it
rather than trusting the counts.
App loads has a SECOND, section-local unavailability flag β views.unavailable,
independent of notOwned. It is the one section the server reads from a
different store, which can be unreadable β or merely too slow, the read is
time-bounded server-side β while every other counter in the same response is
genuinely measured. When that happens the human view prints unavailable and
says so explicitly rather than printing a 0 you would read as "nobody opened
my app". --json passes the flag through and still exits 0, so a script must
branch on views.unavailable too β jq .views.count alone cannot tell an
outage from a real zero. A server old enough to predate this section omits the
views key entirely; the human view reports that as unavailable as well
(naming the different cause), and a script should treat a missing .views the
same way.
civitai generate "<prompt>" runs a text-to-image generation on Civitai's
generator.
π΄ This spends real Buzz and cannot be undone. A submitted generation is charged. There is no cancel-for-refund. Price it with
--dry-runfirst β that calls the cost estimator and spends nothing.
# Price it. Spends nothing.
civitai generate "a cat wearing sunglasses" --dry-run
# The same estimate as raw JSON, for scripts
civitai generate "a cat wearing sunglasses" --dry-run --json
# Generate, refusing if the estimate exceeds 50 Buzz
civitai generate "a cat wearing sunglasses" --quantity 4 --max-cost 50
# A specific checkpoint plus a LoRA at 0.8 strength
civitai generate "a cat" --checkpoint 128713 --lora 250712:0.8
# Wait for the result and write the images into ./out
civitai generate "a cat" --yes --out-dir ./out
# Fire and forget; collect the results later
civitai generate "a cat" --yes --no-wait
civitai workflows list
civitai workflows get <workflow-id>
# Non-interactive (CI) β --yes is required, or the run is refused
civitai generate "a cat" --yes --max-cost 20
# Image-to-image from a local file β --ecosystem is REQUIRED with --image
civitai generate "make it winter" --ecosystem Flux1Kontext --image ./cat.png --dry-run
# β¦or from a public https URL, with two reference images
civitai generate "combine these" --ecosystem Seedream \
--image https://example.com/a.jpg --image ./b.png --yes
# Graduate from flags to a raw graph: print, edit, send back
civitai generate "a cat" --quantity 2 --print-input > graph.json
civitai generate --input graph.json --dry-runCredential. Generation needs a full-scope personal API key carrying the
AI Services scopes (create one, then
civitai login --token <key>). An OAuth browser login (civitai login) does
not carry them and is refused. civitai whoami shows the capability as
Spend Buzz (AI Services).
The cost this command shows is an estimate, not a quote: the server's estimator returns no quote id, no signed price and no expiry, so there is nothing to hand back at submit time β and no server-side spending ceiling is reachable from an API key at all. The realized charge can exceed the estimate and is not refunded.
--max-cost compares that estimate against your number and refuses locally
before submitting. It catches a --quantity typo. That is all it can do. Do not
run an unattended loop believing it caps spend. (The per-API-key buzzLimit on
your account does not bind this path either β the generator meters a separate
server-minted subject, not your key.)
An interactive run prints the estimate, your balance and the resolved model
names, then asks. A non-interactive shell (pipe/CI) without --yes is
refused rather than charged silently. Everything the confirmation prints goes
to stderr, so --json keeps stdout machine-clean.
--image <path-or-url> (repeatable) attaches a reference image and turns the
job into an edit. A local .png/.jpg is uploaded to Civitai first and the
stored blob is referenced; an https URL is passed through as-is, but must
be publicly reachable β the generator downloads it server-side too, and an
unfetchable URL is a 400 after you have already been priced. Either way the
CLI reads the image's width and height from its header only (never decoding
the pixels) and sends them, because the server requires both and rejects an entry
without them. http://, file:// and data: are refused, local files are
capped at 64 MiB (checked by stat, before a byte is read), and only png and
jpeg are supported β webp would need a new third-party decoder dependency.
π΄
--imagerequires--ecosystem, and the reason is money. The server promotes a text-to-image job to image-to-image only when the request names an ecosystem. Without one it ignores the images, generates from the prompt alone, and charges you the full amount β HTTP 200, no error, no warning. Measured: the same graph with and withoutimages[]priced byte-identically.
Two more things the CLI genuinely cannot check for you, so it says them instead of pretending:
- Only some ecosystems accept reference images at all.
Qwen,Flux1Kontext,NanoBanana,Seedream,OpenAI,Grok,Reve,MAI,Booguand a few more do; the Stable Diffusion family and the default ecosystem do not β and for those the images are dropped silently and billed. The cost estimate cannot tell you which case you are in: several edit-capable ecosystems price identically with and without images (measured onFlux1Kontext,NanoBananaandSeedream), so a price comparison is not a detector. Name an ecosystem you know supports editing. - Too many reference images are silently truncated. Per-ecosystem limits run
from 1 to 7, live only inside the server's per-engine graphs, and the extras
are dropped before any limit check can fire β so the server never reports it
and the truncated job is billed. Measured on
Qwen(limit 3): 4, 5, 6 and 12 images all priced identically to 3. The CLI refuses more than 7 (no ecosystem accepts more, so that refusal can never block a valid request) and warns for anything above 1. It deliberately does not vendor the per-ecosystem table β seeAGENTS.mditems 13 and 18.
--ecosystem is sent to the server verbatim and is not checked locally;
an unknown value comes back as the server's own unknown ecosystem error.
--dry-run does upload local --image files, because an estimate built on a
graph with no images[] prices a plain text-to-image job. Uploading spends no
Buzz, and --dry-run still never submits.
--negative-prompt, --quantity, --aspect-ratio, --checkpoint <version-id>, --lora <version-id>[:strength] (repeatable), plus --image /
--ecosystem above.
The generator is permissive, not a validator β it returns HTTP 200 for things it silently changes:
- An out-of-range
--quantityis clamped with no error (asking for 40 charges you for the server's limit). The CLI warns when you cross it. --steps 0/--cfg-scale 0are accepted and price a degenerate, cheaper, wrong job β which is exactly why those flags are not exposed yet.- A checkpoint id that does not exist is accepted, the ecosystem default is silently substituted, and you are billed for it.
So --checkpoint and every --lora is resolved against the public
model-version API before anything is submitted: a bad id becomes a hard
local not found (exit 4) instead of a wrong charge, and the confirmation
echoes the resolved model name so you approve a name rather than an integer.
--model is deliberately absent: civitai download --model takes a model id,
while this takes a version id.
The five flags cover the common job. Everything else the generator understands lives in the generation graph β the JSON document the flags assemble. You can write that document yourself:
# 1. Assemble it from flags, print it, and exit. No submit, no cost estimate,
# no balance read β with no --checkpoint/--lora, no request at all.
civitai generate "a cat" --quantity 2 --aspect-ratio 1:1 --print-input > graph.json
# 2. Edit graph.json however you like.
# 3. Send it as-is. Price it first; --dry-run still spends nothing.
civitai generate --input graph.json --dry-run
civitai generate --input graph.json --yes
# β¦or pipe it, with `-`
jq '.prompt = "a dog"' graph.json | civitai generate --input - --dry-run--print-input reaches no money seam: not the submit, not the cost
estimator, not the balance read. With --checkpoint/--lora it does still make
the public model-version read those flags always make β that lookup supplies
model.type, which graph resources[] require, so skipping it would print a
document --input could not submit.
--print-input's output is a valid --input document by construction β that
round-trip is the point of the pair, and it is what replaces a --set some.path=value expression language the CLI deliberately does not have (a wrong
type in such an expression is accepted by the server silently, and billed; an
edited file is inspectable before it is sent).
Four things to know, all of them consequences of it being a passthrough:
- txt2img only. A graph declaring any other workflow is refused. The
server's content audit reads the top-level
promptnode, and it rebuilds what it inspects from declared graph nodes β so a graph carrying its prompt somewhere else (a comfy node, a nested step input) is exactly the shape that could reach the generator unaudited. That question is open upstream, and this CLI will not be the path that answers it the wrong way. - Envelope keys are refused, not ignored.
civitaiTip,creatorTip,buzzType,tags,externalId,sourceMetadata,sourceMetadataMap,remixOfIdand a top-levelinputbelong to the request envelope around the graph, not to the graph. A file settingcivitaiTipwould charge a tip that--dry-runstructurally cannot show you β the estimator prices a strictly smaller request and is never sent tips at all β so the file is rejected with an error rather than quietly cleaned up. - Keys the CLI does not model are passed through, with a warning. The warning says the CLI cannot verify the key; it is not a claim that the key is invalid, because the CLI does not carry a copy of the server's node registry. It matters because the server's failure mode for a key it does not declare is to drop it silently at HTTP 200 β a typo costs Buzz and produces a job that ran without your parameter, with no error anywhere.
- No model-id safety net.
--checkpoint/--loraare resolved against the public API before submitting; a raw graph is not interpreted, so a nonexistent id in it is accepted, the ecosystem default is substituted, and you are billed.
--input cannot be combined with a prompt argument or with
--negative-prompt / --quantity / --aspect-ratio / --checkpoint /
--lora β there is no predictable answer to "does --lora append to or replace
the file's resources?", so the combination is a usage error. Every execution
flag (--dry-run, --yes, --max-cost, --json, --no-wait, --timeout,
--out-dir, --no-download, --force, --external-id) still applies.
By default generate waits for the job to finish and writes every
deliverable output into --out-dir (default .) as
<workflow-id>-<n>.<ext>. --force overwrites existing files; without it a
collision is refused before any bytes move.
--no-waitsubmits, prints the workflow id and exits0.--no-downloadwaits and prints the output URLs instead of writing files.civitai workflows get <workflow-id>shows a workflow at any time. It is the re-attach path for every case where the CLI stopped early, and it spends nothing.
π΄
--timeoutstops waiting. It does not stop paying. When the deadline passes (or you press Ctrl-C) the generation keeps running server-side and the charge stands β there is no cancel-for-refund, and a mid-run cancel bills the accrued cost anyway. Both cases exit non-zero, print the workflow id, the idempotency key and the exactcivitai workflows get β¦command, and never report success.
Output URLs are presigned and expire. Download promptly; re-read the workflow for fresh links. The blob fetch deliberately carries no credential β the URL is already authorized, and attaching your full-scope API key to it would hand 25 unrelated permissions to a request that needs none.
A finished workflow can contain fewer usable results than you paid for. An
output can be blocked by moderation, never land, or be one you hid on the
website. Those are filtered out of the download β and reported, with the
reason, plus an explicit note when the count differs from --quantity.
Silently writing three files for a four-image job is the failure this exists to
prevent. If every output is filtered out the command exits non-zero.
Crash safety. The orchestrator's idempotency key is written to
~/.config/civitai/pending/<key>.json before the request is sent, because
the money moves server-side even if the process dies mid-POST. If a submit's
reply never arrives, re-run with --external-id <key>: the orchestrator dedupes
on it and returns the pre-existing workflow instead of charging again (it
answers a duplicate with HTTP 200, not a 409, so re-attachment is inferred
locally).
Polling cadence. The status poll starts at 5s, backs off exponentially to a
cap, and backs off harder on a 429. That floor is not tunable downward: the
workflow read proxies straight through to the orchestrator with no cache and no
server-side rate limit, so the CLI's own restraint is the only thing between it
and a 429 storm.
civitai workflows list # newest first
civitai workflows list --limit 5
civitai workflows list --limit 50 --cursor <next-cursor>
civitai workflows list --json # raw server payload, incl. nextCursor
civitai workflows cancel <workflow-id> # asks for confirmation
civitai workflows cancel <workflow-id> -y # skip the prompt (scripts/CI)list is cursor-paged, not page-numbered: when more results exist it prints
Next cursor: <c> on stdout, which you pass back as --cursor. --tag
filters on orchestrator workflow tags (repeatable).
The OUTPUTS column reads deliverable/total. The two differ when an output was
blocked by moderation, never landed, or you hid it on the website β so
0/4 means four images were produced and paid for and none of them are usable,
which is a very different fact from 0/0. civitai workflows get <id> shows
the per-output reason.
π΄
canceldoes not refund anything. A mid-run cancel bills the accrued cost, orchestrator-side and non-refundably. There is no cancel-for-refund on this platform: by the time a workflow is running the money has moved. Cancel a job because you no longer want its output β never as a way to save Buzz, and never to undo a submit. (This is also why--timeoutand Ctrl-C deliberately do not cancel: stopping the wait costs nothing, while stopping the job would cost the same as letting it finish and throw the result away.)
cancel asks for confirmation, matching civitai generate and
civitai app submit. It is the one irreversible action here, and it destroys a
job you have already paid for, so it is gated the same way every other
destructive path in this feature is:
--yes/-yproceeds without prompting;- an interactive terminal prints what is lost and prompts β the default is no, so a bare Enter aborts;
- a non-interactive shell without
--yesrefuses rather than cancelling silently. Scripts must pass--yesexplicitly.
Nothing is cancelled when the confirmation is refused β the gate runs before the request goes out.
generate follows the global exit-code table, with one
deliberate refinement. The API answers several very different failures with the
same HTTP status, and the generic mapping would send a script down the wrong
path β in particular a caller who is out of Buzz, muted, or hitting a
server-side outage must never be told to re-run civitai login. Those cases
therefore exit 1 (generic), not 3 (auth) or 2 (usage):
π΄ An exit code does not tell you whether you were charged. Every failure
above the divider happens before anything is submitted, so nothing was spent.
Every failure below it happens after the submit, and the Buzz is gone β
including a --timeout, a Ctrl-C, and a workflow that ends failed. Do not
write a retry loop that branches on the exit code alone; re-attach with
civitai workflows get <workflow-id> instead of re-submitting.
| Failure | Exit |
|---|---|
| β nothing submitted, nothing spent β | |
| Missing AI Services scope / no token / not authenticated | 3 |
| Not enough Buzz (caught locally against your balance, or reported by the server) | 1 |
| Account muted, or onboarding incomplete | 1 |
| Generation disabled server-side | 1 |
| Prompt refused by content moderation β π΄ never retry, repeated blocked prompts get the account muted | 1 |
The server priced the job but reports ready: false (a selected resource is not currently generatable) |
2 |
Estimate above --max-cost, an unknown ecosystem, or a resource that resolved fine but is "not enabled for generation" (the ids exist; the combination is not runnable β distinct from exit 4, which means "no such id") |
2 |
--input that is malformed, declares a non-txt2img workflow, carries an envelope key (civitaiTip, β¦), or is combined with a content flag |
2 |
No such --checkpoint / --lora version id |
4 |
civitai workflows get / workflows cancel on an unknown workflow id (a read; spends nothing) |
4 |
| β π΄ submitted: the Buzz is already spent β | |
--timeout expired, or Ctrl-C while waiting β the job keeps running server-side and was not cancelled |
1 |
The workflow finished failed / expired / canceled |
1 |
| The workflow succeeded but every output was filtered out (blocked / unavailable / hidden) | 1 |
| Setting | Config key | Env var | Default |
|---|---|---|---|
| Personal API key | token |
CIVITAI_TOKEN |
β |
| OAuth tokens (device login) | auth_kind, access_token, refresh_token, token_expiry, scope |
β | β |
| API base URL | base_url |
CIVITAI_BASE_URL |
https://civitai.com |
| Submit endpoint | β | CIVITAI_SUBMIT_PATH |
/api/v1/blocks/submit-version |
Config lives at ~/.config/civitai/config.yaml (honours XDG_CONFIG_HOME),
written owner-readable only.
civitai returns a differentiated exit code so scripts can branch on the kind
of failure without parsing stderr. The human-readable error message is unchanged
by this β only echo $? differs.
| Code | Meaning |
|---|---|
0 |
Success. |
1 |
Generic / unclassified error. |
2 |
Usage error β a bad flag, a bad flag value (e.g. --limit out of range, a non-integer id), or a request the API rejected as malformed (HTTP 400, e.g. a bad --period/--sort enum). |
3 |
Authentication/authorization β login required, token invalid/expired, or the credential lacks the needed scope (HTTP 401/403, or no token configured). civitai generate refines this: several of its failures are not credential problems but would otherwise land here or on 2, so they exit 1 instead and a script never loops on civitai login. A muted account or incomplete onboarding arrives as a bare 403 that is byte-identical to a missing scope; out of Buzz and generation disabled arrive as 400 (the upstream 403 is re-thrown server-side as a tRPC BAD_REQUEST), which would otherwise read as "bad flags". See Generate. |
4 |
Not found β the requested resource does not exist (HTTP 404). |
5 |
Network/transport failure or service unavailable β dial/timeout, or HTTP 502/503/504 after retries. |
6 |
Rate limited β throttled by the API (HTTP 429). |
# Branch on failure kind
if ! civitai models get "$id" >/dev/null 2>&1; then
case $? in
3) echo "log in first: civitai login" ;;
4) echo "no such model: $id" ;;
5|6) echo "transient β retry later" ;;
*) echo "failed" ;;
esac
fino token configuredβ runcivitai login(or setCIVITAI_TOKEN).unauthorized (401)β your token is invalid/expired. OAuth tokens refresh automatically; if the refresh token has also expired, runcivitai loginagain. For a personal key, create a new one athttps://civitai.com/user/accountandcivitai login --token <key>.forbidden (403)/service unavailable (503)β your account may lack Apps access while the feature is in its invite-only beta (see the warning at the top of this README). Submission is limited to invited beta testers until Apps reaches general availability.validation failedβ read each- ...line; fix the manifest, or pass--skip-validateto package anyway (the server will still re-validate).<dir> is not empty β refusing to overwriteβapp initwon't clobber an existing directory; pick a new name or remove the directory.
make ci # go mod tidy + vet + test + build (mirrors CI)
make test
make build # -> bin/civitai
make fmt
go test ./... -cover- Language: Go 1.25, Cobra (commands) + Viper (config).
- Layout / conventions / how to add a command / release process: see
AGENTS.md. - Contributing: see
CONTRIBUTING.md.
CI (.github/workflows/ci.yml) runs go vet, gofmt -s -l ., go test ./...,
and go build ./... on every push/PR.
Releases are built by goreleaser from a GitHub
Actions workflow on a v* tag push:
git tag v0.1.0
git push origin v0.1.0This cross-compiles for linux/darwin/windows Γ amd64/arm64, stamps
version/commit/date, and publishes a GitHub Release with archives +
checksums.txt plus a Homebrew tap bump. See AGENTS.md for the
full process and the secrets it needs (HOMEBREW_TAP_GITHUB_TOKEN).