GET
/
execution
/
{id}
/
result
Get execution result
curl --request GET \
  --url https://odyssey.asteroid.ai/api/v1/execution/{id}/result \
  --header 'X-Asteroid-Agents-Api-Key: <api-key>'
{
  "execution_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "starting",
  "result": {},
  "error": "<string>",
  "execution_result": {
    "outcome": "success",
    "reasoning": "<string>",
    "result": {}
  }
}

Authorizations

X-Asteroid-Agents-Api-Key
string
header
required

Path Parameters

id
string<uuid>
required

The ID of the execution

Response

200
application/json

Execution result retrieved successfully

The response is of type object.