Skip to main content
GET
/
v1
/
task
/
{taskId}
/
executions
List Task Executions
curl --request GET \
  --url https://api.anchorbrowser.io/v1/task/{taskId}/executions \
  --header 'anchor-api-key: <api-key>'
{
  "data": {
    "results": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "taskVersionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "version": "<string>",
        "status": "success",
        "output": "<string>",
        "errorMessage": "<string>",
        "startTime": "2023-11-07T05:31:56Z",
        "executionTime": 123
      }
    ],
    "pagination": {
      "page": 2,
      "limit": 2,
      "total": 1,
      "totalPages": 1
    }
  }
}

Authorizations

anchor-api-key
string
header
required

API key passed in the header

Path Parameters

taskId
string<uuid>
required

The ID of the task

Query Parameters

page
string
default:1

Page number

limit
string
default:10

Number of results per page

status
enum<string>

Filter by execution status

Available options:
success,
failure,
timeout,
cancelled
version
string

Filter by task version

Response

Task executions retrieved successfully

data
object
I