> ## 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.

# List linked wallets



## OpenAPI

````yaml /api-reference/openapi.yaml get /wallets/link
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:
    get:
      summary: List linked wallets
      operationId: listLinkedWallets
      responses:
        '200':
          description: Linked wallets
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/LinkedWallet'
                required:
                  - data
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - BearerAuth: []
components:
  schemas:
    LinkedWallet:
      type: object
      properties:
        address:
          type: string
        linkedAt:
          type: string
      required:
        - address
    Error:
      type: object
      properties:
        message:
          type: string
        code:
          type: string
      required:
        - message
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````