GET
/
tasks
/
{session_id}
curl --request GET \
  --url https://browser.ai/api/v1/tasks/{session_id} \
  --header 'Authorization: <api-key>'
{
  "executionId": "<string>",
  "scriptId": "<string>",
  "scriptType": "<string>",
  "status": "<string>",
  "progress": {
    "status": "<string>",
    "logs": [
      "<string>"
    ]
  },
  "started": "2023-11-07T05:31:56Z",
  "estimatedCompletion": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Insert API token, use the format: apikey <API-TOKEN>

Path Parameters

session_id
string
required

Insert your task’s session ID located in your Projects dashboard.

Response

200
application/json
Task details
executionId
string
scriptId
string
scriptType
string
status
string
progress
object
started
string
estimatedCompletion
string