Get Task

Returns comprehensive information about a task, including its current status, steps completed, output (if finished), and other metadata.

Path parameters

task_idstringRequiredformat: "uuid"

Headers

AuthorizationstringRequired

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

Response

Successful Response
idstringformat: "uuid"
taskstring
outputstring or null
statusenum

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
created_atstringformat: "date-time"
stepslist of objects
live_urlstring or null
finished_atstring or nullformat: "date-time"
browser_dataobject or null

cookies: List of cookies from the browser session

This field is only available if save_browser_data is set to True in the request.

user_uploaded_fileslist of strings or null
output_fileslist of strings or null
public_share_urlstring or null
metadatamap from strings to strings or null

Errors