Skip to main content
POST
/
v1
/
characters
/
{id}
/
save
Save a reviewing character (move to ready)
curl --request POST \
  --url https://api.aurous-labs.com/v1/characters/{id}/save \
  --header 'X-Api-Key: <api-key>'
{
  "id": "char_01HXMQ7Z3K8Y2NABCDEFGHJKMR",
  "object": "character",
  "name": "Aurora the Adventurer",
  "status": "ready",
  "refs": [
    {
      "pose": "front",
      "url": "https://api.aurous-labs.com/storage/.../front.bin?token=…"
    }
  ],
  "created_at": "2026-05-08T10:00:00Z",
  "updated_at": "2026-05-08T10:00:00Z",
  "attributes": {
    "gender": "female",
    "age": 28,
    "ethnicity": "east-asian",
    "hair_color": "black",
    "hair_style": "shoulder-length straight",
    "eye_color": "brown",
    "body_type": "athletic",
    "additional_details": "small scar above right eyebrow; warm smile"
  },
  "error_message": null,
  "aurous_version": "2026-05-15"
}

Documentation Index

Fetch the complete documentation index at: https://docs.aurous-labs.com/llms.txt

Use this file to discover all available pages before exploring further.

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 on POST /v1/images via character_id. 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

curl -X POST https://api.aurous-labs.com/v1/characters/char_01HXMQ7Z3K8Y2ABCDEFGHJKM/save \
  -H "X-Api-Key: $AUROUS_API_KEY"

Limits

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

Errors

CodeHTTPWhen
invalid_request_error400Character is in a non-savable state (e.g. synthesizing, failed).
resource_not_found404Unknown ID, soft-deleted character, or cross-team.

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-05-15 for unauthenticated requests.

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

"2026-05-15"

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"

attributes
object

Character attributes. Null when unset.

error_message
object

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-05-15"