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

# Mobile money providers

> Returns available bank, institution, or mobile money providers. Use isMobileMoney=false for bank/institution providers and isMobileMoney=true for mobile money providers. Use code as institutionCode and displayName as institutionName in Authorize Transfer.



## OpenAPI

````yaml get /v1/global-payout/bank/providers
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/global-payout/bank/providers:
    get:
      description: >-
        Returns available bank, institution, or mobile money providers. Use
        isMobileMoney=false for bank/institution providers and
        isMobileMoney=true for mobile money providers. Use code as
        institutionCode and displayName as institutionName in Authorize
        Transfer.
      operationId: List Institution Providers
      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
        - description: >-
            Set to true to return mobile money providers. Set to false to return
            bank or institution providers.
          in: query
          name: isMobileMoney
          schema:
            type: boolean
            example: false
          required: false
        - description: >-
            ISO 3166-1 alpha-2 destination country code used to return providers
            for a specific country.
          in: query
          name: countryIsoCode
          schema:
            type: string
            example: US
          required: false
      responses:
        '200':
          description: Providers retrieved successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    example: '00'
                  description:
                    type: string
                    example: Success
                  status:
                    type: boolean
                    example: false
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        code:
                          type: string
                          example: access_bank
                        displayName:
                          type: string
                          example: Access Bank

````