---
title: "Read the latest current-state audit for a verifier"
method: GET
path: "/experimental/orgs/{orgId}/verifier-audits/latest"
tags: ["Orgs", "Context"]
---

# Read the latest current-state audit for a verifier

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

Returns the most recent audit run for one verifier against its lineage’s
repo, scoped to the requesting org — its status, model, ref,
matched/judged counts, and tree-truncation flag, with every per-file
verdict, failing files first.

An audit is per verifier, so the request names both the lineage and the
verifier. Responds with data: null when this org has never audited this
verifier against the repo. Use the by-id read to poll a run started this
session; use this to seed the card on load.

## Path parameters

- `orgId` string, uuid, required

## Query parameters

- `lineageId` string, uuid, required
- `verifierId` string, uuid, required

## Headers

- `Authorization` string

## Response `200`

Default Response

- object
  - `links` object, required
    - `self` string, uri, required
  - `data` object, nullable, 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
      - `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'
      - `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
  - `headCommitSha` string, nullable, required
  - `reuseEligible` boolean, required

## Other responses

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

## Changes

- **2026-09-12** `d5615cbabaa7` — 1 info
  - added the required property `data/anyOf[subschema #1]/attributes/recoveryAction` to the response with the `200` status
- **2026-09-12** `ff4456b002cc` — 3 info
  - added the required property `data/anyOf[subschema #1]/attributes/commitSha` to the response with the `200` status
  - added the required property `headCommitSha` to the response with the `200` status
  - added the required property `reuseEligible` to the response with the `200` status
- **2026-09-08** `78f96a975834` — 1 info
  - added the required property `data/anyOf[subschema #1]/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/latest/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/4b753c0f273e?raw)
