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

# Verify Audit Chain

> Verify audit trail hash chain integrity.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/audit/verify
openapi: 3.1.0
info:
  title: LimitGuard.ai
  description: Trust Intelligence API - Entity verification and risk scoring
  version: 0.1.0
servers:
  - url: https://api.limitguard.ai
security: []
paths:
  /v1/audit/verify:
    get:
      summary: Verify Audit Chain
      description: Verify audit trail hash chain integrity.
      operationId: verify_audit_chain_v1_audit_verify_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response Verify Audit Chain V1 Audit Verify Get
      security:
        - APIKeyHeader: []
components:
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````