Get Task

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

Authentication

AuthorizationBearer

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

Path Parameters

task_idstringRequiredformat: "uuid"

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_atdatetime
stepslist of objects
live_urlstring or null
finished_atdatetime or null
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 nullable strings or null

Errors