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

# Proof

> Opens a Server-Sent Events (SSE) connection to receive proofs for a specific request



## OpenAPI

````yaml get /proof/{requestId}
openapi: 3.1.1
info:
  title: Verity Prover API
  description: API for generating verifiable proofs of API responses
  version: 1.0.0
servers:
  - url: http://localhost:8080
    description: Local Verity Prover Proxy Server
security: []
paths:
  /proof/{requestId}:
    get:
      summary: Subscribe to proof events
      description: >-
        Opens a Server-Sent Events (SSE) connection to receive proofs for a
        specific request
      parameters:
        - name: requestId
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: The request ID to receive proofs for
          example: 678D765E-B6D0-4BFA-AD4C-EBBC92815B25
      responses:
        '200':
          description: SSE connection established
          content:
            text/event-stream:
              schema:
                type: string
                description: Stream of proof events

````