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

# List all wallets

> Retrieve all business wallets. Required scope: `wallet:read`.



## OpenAPI

````yaml /api-reference/wallet/list-openapi.json get /api/external/wallet
openapi: 3.1.0
info:
  title: Blaaiz Platform API - List Wallets
  version: 1.0.0
  description: Retrieve all business wallets
servers:
  - url: https://api-prod.blaaiz.com
  - url: https://api-dev.blaaiz.com
security: []
tags:
  - name: Wallet
paths:
  /api/external/wallet:
    get:
      tags:
        - Wallet
      summary: List all wallets
      description: 'Retrieve all business wallets. Required scope: `wallet:read`.'
      responses:
        '200':
          description: Wallets retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Wallet'
              example:
                - id: e7efc60f-247d-4ecc-b04b-c4810df25758
                  business_id: 9d469b3f-ca6c-4e82-8b4f-5f323c9ab03e
                  currency: NGN
                  currency_id: 9d469b3f-ca6c-4e82-8b4f-5f323c9ab03e
                  amount: 0
                  is_active: true
                - id: wallet_cad_456
                  business_id: 9d469b3f-ca6c-4e82-8b4f-5f323c9ab03e
                  currency: CAD
                  currency_id: currency_cad_id
                  amount: 25000
                  is_active: true
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                message: Invalid or missing access token
      security:
        - oauth2ClientCredentials:
            - wallet:read
components:
  schemas:
    Wallet:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the wallet
        business_id:
          type: string
          description: Business identifier
        currency:
          type: string
          description: Currency code for this wallet (e.g., NGN, CAD, USD)
        currency_id:
          type: string
          description: Currency identifier
        amount:
          type: number
          description: Current wallet balance
        is_active:
          type: boolean
          description: Whether the wallet is active
      required:
        - id
        - business_id
        - currency
        - currency_id
        - amount
        - is_active
    Error:
      type: object
      properties:
        message:
          type: string
      required:
        - message
  securitySchemes:
    oauth2ClientCredentials:
      type: oauth2
      description: >-
        Use your OAuth client credentials to obtain a short-lived Bearer token
        from POST /oauth/token.
      flows:
        clientCredentials:
          tokenUrl: /oauth/token
          scopes:
            wallet:read: Read business wallets.

````