Skip to main content
Get Run
curl --request GET \
  --url https://api.noqa.ai/v1/runs/{run_id} \
  --header 'x-api-key: <api-key>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created_at": "2023-11-07T05:31:56Z",
  "status": "queued",
  "test_count": 123,
  "statuses": {},
  "build": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "version": "<string>",
    "name": "<string>"
  },
  "device": {
    "model": "<string>",
    "os_version": "<string>",
    "platform": "ios",
    "locale": "en_US"
  },
  "tests": [
    {
      "case_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "case_name": "<string>",
      "status": "queued"
    }
  ]
}

Authorizations

x-api-key
string
header
required

API Key for authentication. Get your API key from NOQA dashboard.

Headers

x-api-key
string | null

API Key for authentication

Path Parameters

run_id
string<uuid>
required

Query Parameters

app_id
string<uuid>
required

Application ID

Response

Successful Response

Response model for test run detail in Public API

id
string<uuid>
required

Unique identifier of the test run

Example:

"550e8400-e29b-41d4-a716-446655440000"

created_at
string<date-time>
required

Timestamp when the run was created

status
enum<string>
required

Overall run status

Available options:
queued,
running,
passed,
failed,
cancelled
Examples:

"running"

"completed"

"cancelled"

test_count
integer
required

Total number of tests in the run

Example:

10

statuses
Statuses · object
required

Count of tests by status

Example:
{ "failed": 2, "passed": 3, "queued": 5 }
build
BuildResponse · object

Build information

device
DeviceConfig · object

Device configuration used for the run

tests
TestSummaryResponse · object[]

List of tests in the run