> ## Documentation Index
> Fetch the complete documentation index at: https://docs.okrapdf.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Verify Export Audit

> Verify the integrity of a document's audit trail.

## Overview

Validates the chain-hash integrity of a document's audit trail. Returns the document log and vendor log for the specified version. Does not require authentication.

## Request

<ParamField path="id" type="string" required>
  Document ID.
</ParamField>

<ParamField query="v" type="string">
  Version to verify. Defaults to the latest version.
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl "https://api.okrapdf.com/exports/doc-abc123/audit/verify?v=3" \
    -H "Authorization: Bearer okra_YOUR_KEY"
  ```
</RequestExample>

### Response (200)

```json theme={null}
{
  "version": "3",
  "documentLog": { "valid": true, "entries": 12 },
  "vendorLog": { "valid": true, "entries": 5 }
}
```
