# List test results

`GET /api/v1/test-results`

Test results in the selected organization, visible to every member of it. The organization is chosen by the X-Organization-Id header, or the organization the API key is bound to, otherwise the caller's default organization.

**Header parameters**

| Name                | Type    | Required | Description                                                                                                               |
| ------------------- | ------- | -------- | ------------------------------------------------------------------------------------------------------------------------- |
| `X-Organization-Id` | integer | no       | Selects which of the caller's organizations the request acts on. When omitted, the caller's default organization is used. |

**Example request**

```
curl https://api.mobilenexthq.com/api/v1/test-results \

  -X GET \

  -H 'Authorization: Bearer mob_...'
```

**Responses**

**200** — Paginated list of test results, newest first

```
{

  "results": [

    {

      "id": "string",

      "name": "Smoke suite",

      "userAgent": "mobilewright/0.0.39",

      "createdAt": "2026-01-01T00:00:00Z"

    }

  ]

}
```

**401** — Missing or invalid Bearer token

```
{

  "error": {

    "code": "string",

    "message": "string"

  }

}
```
