Skip to main content
GET
/
generation
/
status
/
{generation_id}
Check generation status
curl --request GET \
  --url https://api.animusai.co/v2/generation/status/{generation_id} \
  --header 'Authorization: Bearer <token>'
{
  "generation_id": "<string>",
  "group_id": "<string>",
  "generation_type": "<string>",
  "status": "<string>",
  "progress": 50,
  "result_urls": [
    "<string>"
  ],
  "error": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "prompt": "<string>",
  "service": "<string>",
  "performance_metadata": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

generation_id
string
required

Identifier returned from the create or batch endpoints.

Response

Current status for the generation.

generation_id
string
group_id
string
generation_type
string
status
string
progress
integer
Required range: 0 <= x <= 100
result_urls
string<uri>[]
error
string | null
created_at
string<date-time>
prompt
string
service
string
performance_metadata
object
  • Option 1
  • Option 2
I