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

# Get the public keys

> The receipt-signing public keys, and the anchor attesters and schemas a checker must accept (SPEC §5.2, §8.4). Public by design.



## OpenAPI

````yaml /api-reference/openapi.json get /.well-known/poaw-keys.json
openapi: 3.1.0
info:
  description: 'The public HTTP API of QED Proof. Guides: https://docs.qedproof.site'
  title: QED Proof API
  version: 0.1.0
servers:
  - url: https://api.qedproof.site
security: []
paths:
  /.well-known/poaw-keys.json:
    get:
      summary: Get the public keys
      description: >-
        The receipt-signing public keys, and the anchor attesters and schemas a
        checker must accept (SPEC §5.2, §8.4). Public by design.
      operationId: poaw_keys__well_known_poaw_keys_json_get
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties: true
                title: Response Poaw Keys  Well Known Poaw Keys Json Get
                type: object
          description: Successful Response

````