GET
/
v1
/
agents
/
jobs
/
{agent_job_id}
/
status
curl --request GET \
  --url https://api.roe-ai.com/v1/agents/jobs/{agent_job_id}/status/ \
  --header 'Authorization: Bearer <token>'
{
  "status": 3,
  "timestamp": 1719556664.569293
}

Authorizations

Authorization
string
header
required

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

Path Parameters

agent_job_id
string
required

Response

200 - application/json
Agent job status
status
integer
required

Status code. 0: PENDING, 1: STARTED, 2: RETRY, 3: SUCCESS, 4: FAILURE, 5: CANCELLED

timestamp
integer
required

Unix timestamp in seconds

error_message
string

Error message if status is RETRY or FAILURE