Projects
Manage and query projects in your organization.
Projects are the top-level containers for test runs, specs, and test results. Each project has a unique project ID and can be configured with various settings.
Get all projects for your organization with optional pagination
API key authentication using Bearer token
Maximum number of items to return (default: 10)
10Cursor for pagination. Returns items after this cursor value.
Cursor for pagination. Returns items before this cursor value.
Successful response
Invalid request parameters
Authentication failed
Get a single project by ID
API key authentication using Bearer token
The project ID
proj_abc123Successful response
Invalid request parameters
Authentication failed
Resource not found
Get all runs for a project with optional pagination and filtering. Supports filtering by branch, tags, status, completion state, date range, search text, and author.
API key authentication using Bearer token
The project ID
proj_abc123Maximum number of items to return (default: 10)
10Cursor for pagination. Returns items after this cursor value.
Cursor for pagination. Returns items before this cursor value.
Filter runs by git branch name
mainFilter runs by tags (can be specified multiple times). Use tag_operator to control matching behavior.
["workflow-master","nightly"]Logical operator for tag filtering. AND requires all tags to be present (default), OR requires any tag to be present.
ANDExample: ANDPossible values: Search runs by ciBuildId or commit message. Case-insensitive.
fix login bugFilter runs by git commit author name (can be specified multiple times).
["John Doe"]Filter runs created on or after this date (ISO 8601 format).
2024-01-01T00:00:00ZFilter runs created before this date (ISO 8601 format).
2024-12-31T23:59:59ZSuccessful response
Invalid request parameters
Authentication failed
Resource not found
Get aggregated run and test metrics for a project within a date range
API key authentication using Bearer token
The project ID
proj_abc123Start date in ISO 8601 format
2024-01-01T00:00:00.000ZEnd date in ISO 8601 format
2024-01-31T23:59:59.999ZTime resolution for histogram data
1dPossible values: Filter by tags (can be specified multiple times)
Filter by branches (can be specified multiple times)
Filter by groups (can be specified multiple times)
Filter by git authors (can be specified multiple times)
Successful response
Invalid request parameters
Authentication failed
Resource not found
Last updated
Was this helpful?