Skip to main content
POST
/
characters
Create character
curl --request POST \
  --url https://api.animusai.co/v2/characters \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "description": "<string>"
}'
{
  "character_id": "<string>",
  "organization_id": "<string>",
  "creator_id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "status": "<string>",
  "current_step": 123,
  "face_images_count": 123,
  "body_images_count": 123,
  "dataset_status": "<string>",
  "face_lora_status": "<string>",
  "body_lora_status": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "subscription_id": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
required
description
string

Response

200 - application/json

Character created.

character_id
string
organization_id
string
creator_id
string
name
string
description
string
status
string
current_step
integer
face_images_count
integer
body_images_count
integer
dataset_status
string
face_lora_status
string
body_lora_status
string
created_at
string<date-time>
updated_at
string<date-time>
subscription_id
string | null
I