Skip to main content
GET
/
{character_id}
/
generation
/
capabilities
Get generation capabilities
curl --request GET \
  --url https://api.animusai.co/v2/{character_id}/generation/capabilities \
  --header 'Authorization: Bearer <token>'
{
  "character_id": "<string>",
  "face_lora": {
    "status": "<string>",
    "available": true,
    "url": "<string>"
  },
  "body_lora": {
    "status": "<string>",
    "available": true,
    "url": "<string>"
  },
  "can_generate": true,
  "generation_ready": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

character_id
string
required

Response

200 - application/json

Capability flags for the character.

character_id
string
face_lora
object
body_lora
object
can_generate
boolean
generation_ready
boolean
I