Skip to main content
GET
/
{character_id}
/
dataset
/
images
List dataset images
curl --request GET \
  --url https://api.animusai.co/v2/{character_id}/dataset/images \
  --header 'Authorization: Bearer <token>'
{
  "character_id": "<string>",
  "images": [
    {
      "image_id": "<string>",
      "filename": "<string>",
      "prompt": "<string>",
      "seed": 123,
      "approved": true,
      "regenerated": true,
      "created_at": "2023-11-07T05:31:56Z",
      "view_url": "<string>"
    }
  ],
  "total": 123,
  "approved_count": 123,
  "dataset_status": "<string>"
}

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

Query Parameters

approved_only
boolean

If true, only approved images are returned.

Response

200 - application/json

Dataset images.

character_id
string
images
object[]
total
integer
approved_count
integer
dataset_status
string
I