API v1.0
Get Task
Returns comprehensive information about a task, including its current status, steps completed, output (if finished), and other metadata.
GET
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200 - application/json
output: Final output or result of the task (if completed)
live_url: URL to view live task execution. To preview the url you can directly integrate it in <iframe> tag. For example:
<iframe src={live_url} width="600" height="450"></iframe>
Which will display the task execution and allows you to control the agent live. It is pure VNC implementation.
Enumeration of possible task states.
- created: Task is initialized but not yet started
- running: Task is currently executing
- finished: Task has completed successfully
- stopped: Task was manually stopped
- paused: Task execution is temporarily paused
- failed: Task encountered an error and could not complete
Available options:
created
, running
, finished
, stopped
, paused
, failed
Was this page helpful?