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

# Link wallet (verify)



## OpenAPI

````yaml /api-reference/openapi.yaml post /wallets/link/verify
openapi: 3.1.0
info:
  title: Onbeam API
  version: 1.0.0
servers:
  - url: https://api.onbeam.io
  - url: http://localhost:3004
security: []
paths:
  /wallets/link/verify:
    post:
      summary: Link wallet (verify)
      operationId: linkWalletVerify
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LinkVerifyRequest'
      responses:
        '200':
          description: Wallet linked
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LinkVerifyResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - BearerAuth: []
components:
  schemas:
    LinkVerifyRequest:
      type: object
      properties:
        address:
          type: string
          examples:
            - '0x1234567890abcdef1234567890abcdef12345678'
        signature:
          type: string
          examples:
            - 0x...
      required:
        - address
        - signature
    LinkVerifyResponse:
      type: object
      properties:
        linked:
          type: boolean
      required:
        - linked
    Error:
      type: object
      properties:
        message:
          type: string
        code:
          type: string
      required:
        - message
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````