Skip to main content
GET
/
v1
/
projects
/
{projectId}
/
runs
/
{runId}
Get test run status and results
curl --request GET \
  --url https://api.stably.ai/v1/projects/{projectId}/runs/{runId} \
  --header 'authorization: <api-key>'
{
  "status": "QUEUED",
  "startedAt": "<string>",
  "finishedAt": "<string>",
  "results": {
    "testCases": [
      {
        "title": "<string>",
        "status": "RUNNING",
        "durationMs": 123
      }
    ]
  }
}

Authorizations

authorization
string
header
required

Path Parameters

projectId
string
required
runId
string
required

Response

200 - application/json

Default Response

status
enum<string>
required

Overall status of the test run

Available options:
QUEUED,
RUNNING,
PASSED,
FAILED,
TIMEDOUT,
CANCELLED,
INTERRUPTED
startedAt
string

ISO timestamp when the run started (null for queued runs)

finishedAt
string

ISO timestamp when the run finished

results
object

Test results (only present when status is not running)