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

# Fetch accounts sandbox

> Sandbox version of Fetch Global Payout Accounts. Returns canned multi-currency account data for use in testing.



## OpenAPI

````yaml get /v1/sandbox/global-payout/accounts
openapi: 3.0.1
info:
  description: ''
  title: Vendor API
  version: 1.0.0
servers:
  - description: Production
    url: https://api.nomba.com
  - description: Sandbox
    url: https://sandbox.nomba.com
security: []
tags:
  - name: Authenticate
  - name: Accounts
  - name: Virtual Accounts
  - name: Online Checkout
  - name: Charge
  - name: Transfers
  - name: Direct Debits
  - name: Terminals
  - name: Transactions
  - name: Airtime and Data Vending
  - name: Electricity Vending
  - name: CableTV Subscription
  - name: Betting Vending
paths:
  /v1/sandbox/global-payout/accounts:
    get:
      description: >-
        Sandbox version of Fetch Global Payout Accounts. Returns canned
        multi-currency account data for use in testing.
      operationId: Fetch Global Payout Accounts (Sandbox)
      parameters:
        - description: Bearer token for authentication.
          in: header
          name: Authorization
          schema:
            type: string
            example: Bearer <token>
          required: true
        - description: The parent accountId of the business.
          in: header
          name: accountId
          schema:
            type: string
            example: 890022ce-bae0-45c1-9b9d-ee7872e6ca27
          required: true
      responses:
        '200':
          description: Accounts retrieved successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    example: '00'
                  description:
                    type: string
                    example: Success
                  status:
                    type: boolean
                    description: >-
                      Legacy envelope flag. Global Payout endpoints leave it
                      false even on success - read code instead, where 00 means
                      success.
                    example: false
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        accountId:
                          type: string
                          example: sandbox-acc-cad-001
                        name:
                          type: string
                          example: Sandbox CAD Account
                        currency:
                          type: string
                          example: CAD
                        balance:
                          type: number
                          nullable: true
                          description: >-
                            Everything the wallet holds, liens included. Null
                            when the balance could not be read - see status.
                          example: 1250.5
                        availableBalance:
                          type: number
                          nullable: true
                          description: >-
                            The balance less anything held under lien: what can
                            actually be paid out. Null when the balance could
                            not be read - see status.
                          example: 1000.5
                        status:
                          type: string
                          enum:
                            - ACTIVE
                            - UNAVAILABLE
                          description: >-
                            ACTIVE when the balances are good. UNAVAILABLE means
                            you hold the account but its balance could not be
                            read on this request, and both balance fields are
                            null.
                          example: ACTIVE
                        operationRegion:
                          type: string
                          example: GLOBAL
                    example:
                      - accountId: sandbox-acc-ngn-001
                        name: Sandbox Main Account
                        currency: NGN
                        balance: 500000
                        availableBalance: 500000
                        status: ACTIVE
                        operationRegion: NG
                      - accountId: sandbox-acc-cad-001
                        name: Sandbox CAD Account
                        currency: CAD
                        balance: 1250.5
                        availableBalance: 1000.5
                        status: ACTIVE
                        operationRegion: GLOBAL

````