GET
/
v1
/
jobs
/
{creation_id}
/
status
curl --request GET \
  --url https://api.haiper.ai/v1/jobs/{creation_id}/status \
  --header 'Authorization: Bearer <token>'
{
  "status": "<string>",
  "value": {
    "status": "<string>",
    "progress": 123
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

creation_id
string
required

Response

200
application/json
status
string
required

The status can be 'pending', 'processing', 'succeed', 'failed', or 'post_processing'.

value
object