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

# List Gateway Wallets

> List all wallets managed by Gateway.
Gateway manages its own encrypted wallet storage.

Returns:
    List of wallet information from Gateway

Raises:
    HTTPException: 503 if Gateway unavailable



## OpenAPI

````yaml /api-reference/openapi.json get /accounts/gateway/wallets
openapi: 3.1.0
info:
  title: Hummingbot API
  description: API for managing Hummingbot trading instances
  version: 1.0.1
servers:
  - url: http://localhost:8000
    description: Local development server
security: []
paths:
  /accounts/gateway/wallets:
    get:
      tags:
        - Accounts
      summary: List Gateway Wallets
      description: |-
        List all wallets managed by Gateway.
        Gateway manages its own encrypted wallet storage.

        Returns:
            List of wallet information from Gateway

        Raises:
            HTTPException: 503 if Gateway unavailable
      operationId: list_gateway_wallets_accounts_gateway_wallets_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBasic: []
components:
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````