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

# Verify Address

> Check if a wallet address has been verified



## OpenAPI

````yaml GET /verify/{address}
openapi: 3.1.0
info:
  title: Proof API
  description: API for wallet verification and identity
  version: 1.0.0
servers:
  - url: https://proof.dflow.net
security: []
paths:
  /verify/{address}:
    get:
      summary: Verify Address
      description: Check if a wallet address is verified
      operationId: verify-address
      parameters:
        - schema:
            type: string
            minLength: 32
            maxLength: 44
          in: path
          name: address
          required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  verified:
                    type: boolean

````