Skip to main content
POST
Save a reviewing character (move to ready)
POST /v1/characters/{id}/save is the publication step of the synthesize flow. It moves a reviewing character to ready, cleans up temporary upload bytes from the synthesis pipeline, and makes the character referenceable via character_id on POST /v1/images or POST /v1/videos. This endpoint costs no credits and dispatches no inference — it is purely a state transition.

When to use

  • The synthesize flow finished (status: reviewing) and you’ve inspected refs[] — the four poses look right and you’re ready to use the character.
  • You want to convert an idempotent intent (“create the character”) into a usable resource without doing extra work.
If the refs don’t look right, call POST /v1/characters/{id}/refs/regenerate (one pose) or POST /v1/characters/{id}/resynthesize (all four) instead. To discard, call DELETE /v1/characters/{id}.

Examples

Limits

  • Rate limit: bucket characters_post — 30 requests/min sustained, 60 burst per team.

Errors

Common pitfalls

  • Save is idempotent on already-ready characters — calling it twice returns 200 both times with status: ready unchanged. Use this property to retry confidently.
  • A synthesizing character returns 400 — don’t call save until you’ve polled and seen status: reviewing.
  • After save, the character cannot be returned to reviewing. To retry refs, call regenerate-ref (single pose) or resynthesize (all four).

Authorizations

X-Api-Key
string
header
required

Your team API key (starts with al_live_).

Headers

Aurous-Version
string

Optional API version pin (YYYY-MM-DD). Defaults to your team's pinned version, or the system default 2026-07-16 for unauthenticated requests.

Pattern: ^\d{4}-\d{2}-\d{2}$
Example:

"2026-07-16"

Path Parameters

id
string
required

Opaque character ID

Example:

"char_01HXMQ7Z3K8Y2NABCDEFGHJKMR"

Response

Character saved

id
string
required

Opaque character ID.

Example:

"char_01HXMQ7Z3K8Y2NABCDEFGHJKMR"

object
enum<string>
required

Discriminator

Available options:
character
Example:

"character"

name
string
required

Display name.

Example:

"Aurora the Adventurer"

status
enum<string>
required

Lifecycle state. synthesizing: synthesize flow running. reviewing: synthesize completed, awaiting POST /:id/save. ready: usable on POST /v1/images. failed: synthesize failed; use POST /:id/resynthesize to retry. deleted: soft-deleted (filtered out of list endpoint).

Available options:
synthesizing,
reviewing,
ready,
failed,
deleted
Example:

"ready"

refs
object[]
required

Reference images (typically 4 poses).

created_at
string
required

Creation timestamp (ISO 8601).

Example:

"2026-05-08T10:00:00Z"

updated_at
string
required

Last-update timestamp (ISO 8601).

Example:

"2026-05-08T10:00:00Z"

client_reference_id
object | null

Caller-supplied reference echoed back (the value sent on create). Null if unset.

Example:

"bot_8472"

attributes
object | null

Character attributes. Null when unset.

error_message
object | null

Error message when status is failed. Null otherwise.

Example:

null

aurous_version
string

API contract version applied at the time this row was minted (D25 — frozen for replay across future version bumps).

Example:

"2026-07-16"