---
title: "Read a current-state audit run by id"
method: GET
path: "/experimental/orgs/{orgId}/verifier-audits/{runId}"
tags: ["Orgs", "Context"]
---

# Read a current-state audit run by id

`GET /experimental/orgs/{orgId}/verifier-audits/{runId}`

Returns one audit run — its status, model, ref, matched/judged counts, and
tree-truncation flag — with every per-file verdict, failing files first.
Scoped to the requesting org: a run owned by another org is a 404.
An authored run requires its declarationId so another configured group
cannot read it as the selected result.

## Path parameters

- `orgId` string, uuid, required
- `runId` string, uuid, required

## Query parameters

- `declarationId` string, uuid

## Headers

- `Authorization` string

## Response `200`

Default Response

- object
  - `links` object, required
    - `self` string, uri, required
  - `data` object, required
    - `id` string, uuid, required
    - `type` 'context-verifier-audit-run', required
    - `attributes` object, required
      - `status` union, required
        - 'pending'
        - 'running'
        - 'complete'
        - 'failed'
      - `model` string, nullable, required
      - `ref` string, required
      - `commitSha` string, nullable, required
      - `declarationId` string, uuid, nullable, required
      - `configurationRevisionId` string, uuid, nullable, required
      - `filesMatched` integer, required
      - `filesJudged` integer, required
      - `treeTruncated` boolean, required
      - `filesSkippedByContent` integer, required
      - `error` string, nullable, required
      - `recoveryAction` union, required
        - 'wait_for_index'
        - 'use_latest_skill'
        - 'reindex_required'
      - `startedAt` string, date-time, nullable, required
      - `completedAt` string, date-time, nullable, required
      - `createdAt` string, date-time, required
      - `updatedAt` string, date-time, required
      - `verdicts` object[], required
        - `path` string, required
        - `status` union, required
          - 'pass'
          - 'fail'
          - 'na'
        - `checks` object[], required
          - `name` string, required
          - `status` union, required
            - 'pass'
            - 'fail'
            - 'na'
          - `reasoning` string
          - `citation` string
        - `judgeError` string, nullable, required

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `500` — Internal Server Error

## Changes

- **2026-09-15** `050f3217cf2c` — 4 info
  - added the new optional `query` request parameter `declarationId`
  - added `subschema #3` to the `data/attributes/recoveryAction/anyOf[subschema #1]/` response property `anyOf` list for the response status `200`
  - added the required property `data/attributes/configurationRevisionId` to the response with the `200` status
  - added the required property `data/attributes/declarationId` to the response with the `200` status
- **2026-09-12** `d5615cbabaa7` — 1 info
  - added the required property `data/attributes/recoveryAction` to the response with the `200` status
- **2026-09-12** `ff4456b002cc` — 1 info
  - added the required property `data/attributes/commitSha` to the response with the `200` status
- **2026-09-08** `78f96a975834` — 1 info
  - added the required property `data/attributes/filesSkippedByContent` to the response with the `200` status
- **2026-09-04** `ffb03b5d287f` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/tessl/apis/tessl-api/changes/experimental/orgs/:orgId/verifier-audits/:runId/get.md)

---

[API](https://skmtc.dev/tessl/apis/tessl-api.md) · [All operations](https://skmtc.dev/tessl/apis/tessl-api/llms.txt) · [OpenAPI document](https://skmtc.dev/tessl/apis/tessl-api/revisions/050f3217cf2c?raw)
