GET
/
v1
/
agents
/
jobs
/
{agent_job_id}
/
result
curl --request GET \
  --url https://api.roe-ai.com/v1/agents/jobs/{agent_job_id}/result/ \
  --header 'Authorization: Bearer <token>'
[
  {
    "key": "output",
    "description": "Output JSON data",
    "data_type": "application/json",
    "value": "{\"summary\": \"hello world!\"}"
  }
]

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 outputs
key
string
required

The key of the output

data_type
string
required

The MIME data type of the output

value
string
required

The value of the output, serialized as a string

description
string | null

The description of the output