Skip to main content
GET
/
runs
/
{run_id}
Get run status
curl --request GET \
  --url https://api.mobileboost.io/runs/{run_id} \
  --header 'Authorization: Bearer <token>'
{
  "runId": "abc123",
  "status": "completed",
  "totalTests": 2,
  "succeededTests": [
    {
      "id": "test1",
      "title": "Login flow",
      "status": "succeeded",
      "recording": "https://app.mobileboost.io/recording/abc123/runs/test1"
    }
  ],
  "failedTests": [
    {
      "id": "test2",
      "title": "Checkout flow",
      "status": "failed",
      "recording": "https://app.mobileboost.io/recording/abc123/runs/test2"
    }
  ],
  "blockedTests": []
}

Documentation Index

Fetch the complete documentation index at: https://docs.mobileboost.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

run_id
string
required

Response

200 - application/json

Successful response

runId
string

The ID of the run.

status
string

Overall status of the run (e.g. pending, running, completed).

totalTests
integer

Total number of tests in the run.

succeededTests
TestRunResult · object[]

Tests that succeeded.

failedTests
TestRunResult · object[]

Tests that failed.

blockedTests
TestRunResult · object[]

Tests that were blocked.