Skip to main content
GET
List latest test executions

Authorizations

Authorization
string
header
required

Personal or account token.

Path Parameters

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
test_ids
string[] | null

Return only executions of these tests.

Maximum array length: 1000
asset_ids
string[] | null

Return only executions of tests on these asset ids.

Maximum array length: 1000
test_types
string[] | null

Return only executions of tests of these test types.

Maximum array length: 1000
definition_types
string[] | null

Return only executions of tests of these definition types.

Maximum array length: 1000
source_types
string[] | null

Return only executions from these source types (e.g. dbt, elementary_cloud).

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
disabled
boolean | null

Disabled tests' executions are omitted by default. Pass true to return only the disabled ones, false for the default (enabled only).

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:id

Sort field for a full scan. Ignored when synced_since/deleted_since is set (those feeds always order by their own cursor).

Available options:
id,
synced_at
direction
enum<string>
default:asc

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.