Skip to main content
GET
/
{character_id}
/
dataset
/
status
Get dataset status
curl --request GET \
  --url https://api.animusai.co/v2/{character_id}/dataset/status \
  --header 'Authorization: Bearer <token>'
{
  "character_id": "<string>",
  "dataset_status": "<string>",
  "current_step": 123,
  "total_images": 123,
  "approved_images": 123,
  "min_required": 123,
  "max_allowed": 123,
  "can_approve": true,
  "generation_complete": 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

Dataset status.

character_id
string
dataset_status
string
current_step
integer
total_images
integer
approved_images
integer
min_required
integer
max_allowed
integer
can_approve
boolean
generation_complete
boolean
I