Test Results

Query historical test execution results.

Test results provide detailed information about individual test executions across multiple runs. You can filter by date range, branch, tags, git author, and test status.

Get test results

get
/test-results/{signature}

Get historical test execution results for a specific test signature

Authorizations
AuthorizationstringRequired

API key authentication using Bearer token

Path parameters
signaturestringRequired

The test signature

Example: abc123def456
Query parameters
date_startstring · date-timeRequired

Start date in ISO 8601 format

Example: 2024-01-01T00:00:00.000Z
date_endstring · date-timeRequired

End date in ISO 8601 format

Example: 2024-01-31T23:59:59.999Z
limitinteger · min: 1 · max: 100Optional

Maximum number of items to return (default: 10)

Default: 10
starting_afterstringOptional

Cursor for pagination. Returns items after this cursor value.

ending_beforestringOptional

Cursor for pagination. Returns items before this cursor value.

tags[]string[]Optional

Filter by tags (can be specified multiple times using bracket notation, e.g., tags[]=value1&tags[]=value2)

Example: ["tag1","tag2"]
branches[]string[]Optional

Filter by branches (can be specified multiple times using bracket notation, e.g., branches[]=main&branches[]=develop)

Example: ["main","develop"]
authors[]string[]Optional

Filter by git authors (can be specified multiple times using bracket notation, e.g., authors[]=author1&authors[]=author2)

Example: ["author1","author2"]
groups[]string[]Optional

Filter by groups (can be specified multiple times using bracket notation, e.g., groups[]=group1&groups[]=group2)

Example: ["group1","group2"]
branch[]string[]OptionalDeprecated

Deprecated. Use branches[] instead. Filter by git branch (can be specified multiple times using bracket notation, e.g., branch[]=main&branch[]=develop)

Example: ["main","develop"]
tag[]string[]OptionalDeprecated

Deprecated. Use tags[] instead. Filter by run tags (can be specified multiple times using bracket notation, e.g., tag[]=tag1&tag[]=tag2)

Example: ["tag1","tag2"]
git_author[]string[]OptionalDeprecated

Deprecated. Use authors[] instead. Filter by git author (can be specified multiple times using bracket notation, e.g., git_author[]=author1&git_author[]=author2)

Example: ["author1","author2"]
flakybooleanOptional

Filter by flaky status. When true, returns only flaky tests. When false, returns only non-flaky tests. When omitted, returns all tests regardless of flaky status. Can be combined with status filter using AND logic (e.g., status[]=passed&flaky=true returns only flaky passed tests).

group[]string[]OptionalDeprecated

Deprecated. Use groups[] instead. Filter by run group (can be specified multiple times using bracket notation, e.g., group[]=group1&group[]=group2)

Example: ["group1","group2"]
Responses
chevron-right
200

Successful response

application/json
statusstring · enumRequiredPossible values:
has_morebooleanRequired
get
/test-results/{signature}

Last updated

Was this helpful?