Skip to main content
GET
List test executions

Authorizations

Authorization
string
header
required

Personal or account token.

Path Parameters

test_id
string
required

Test identifier.

env_id
string
required

Environment identifier that scopes the request.

Query Parameters

sub_test_ids
string[] | null

Return only executions of these sub-tests.

Maximum array length: 1000
statuses
string[] | null

Return only executions with these statuses, as stored (e.g. PASS, WARN, FAIL, ERROR, SKIPPED, NO_DATA).

Maximum array length: 1000
start_time_from
string<date-time> | null

Return only executions that started at or after this time. Defaults to 30 days ago.

start_time_to
string<date-time> | null

Return only executions that started at or before this time.

cursor
string | null

Opaque cursor from a previous response's next_cursor. Reuse it only with the identical query parameters that produced it.

limit
integer
default:500

Maximum items to return per page (1-2000).

Required range: 1 <= x <= 2000
order_by
enum<string>
default:start_time

Sort field for the execution history.

Available options:
start_time,
id
direction
enum<string>
default:desc

Sort direction for order_by.

Available options:
asc,
desc

Response

Successful Response

items
TestExecution · object[]
required

Objects returned in the current page.

has_more
boolean
default:false

The only signal to continue pagination; a short page may still have more items because permission filtering can trim rows.

next_cursor
string | null

Opaque cursor for the next page, valid only with identical query parameters.