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

# List supported banks / mobile money networks for a corridor

> Returns the live upstream catalog filtered to status=active for the given country and rail. Pass the returned `id` back as the recipient `bankCode` (LOCAL_BANK) or `networkId` (LOCAL_MOMO).



## OpenAPI

````yaml /openapi.json get /api/v1/business/payouts/networks
openapi: 3.0.0
info:
  title: Axra Public API
  description: Merchant and third-party developer API surface
  version: '2026-04-15'
  contact: {}
servers:
  - url: http://localhost:3001
    description: Local development
  - url: https://staging-api.useaxra.com
    description: Staging
  - url: https://api.useaxra.com
    description: Production
security: []
tags: []
paths:
  /api/v1/business/payouts/networks:
    get:
      tags:
        - Business Payouts
      summary: List supported banks / mobile money networks for a corridor
      description: >-
        Returns the live upstream catalog filtered to status=active for the
        given country and rail. Pass the returned `id` back as the recipient
        `bankCode` (LOCAL_BANK) or `networkId` (LOCAL_MOMO).
      operationId: BusinessPayoutsController_listNetworks
      parameters:
        - name: X-Axra-Business-Id
          in: header
          description: Active business context
          required: false
          schema:
            type: string
        - name: x-api-key
          in: header
          description: Merchant API key (alternative to dashboard JWT)
          required: false
          schema:
            type: string
        - name: country
          required: true
          in: query
          schema:
            type: string
            enum:
              - NG
              - KE
              - ZA
              - TZ
              - UG
              - RW
              - MW
              - ZM
              - BW
              - CM
              - BJ
              - BF
              - CD
              - CI
              - GA
              - ML
              - CG
              - SN
              - TG
        - name: rail
          required: true
          in: query
          schema:
            type: string
            enum:
              - LOCAL_BANK
              - LOCAL_MOMO
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  data:
                    $ref: '#/components/schemas/LocalPayoutNetworkListResponseDto'
                required:
                  - success
                  - data
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HttpErrorEnvelopeDto'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HttpErrorEnvelopeDto'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HttpErrorEnvelopeDto'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HttpErrorEnvelopeDto'
        '409':
          description: Conflict
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HttpErrorEnvelopeDto'
        '422':
          description: Unprocessable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HttpErrorEnvelopeDto'
        '429':
          description: Too many requests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HttpErrorEnvelopeDto'
        '500':
          description: Server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HttpErrorEnvelopeDto'
      security:
        - bearer: []
components:
  schemas:
    LocalPayoutNetworkListResponseDto:
      type: object
      properties:
        networks:
          type: array
          items:
            $ref: '#/components/schemas/LocalPayoutNetworkDto'
      required:
        - networks
    HttpErrorEnvelopeDto:
      type: object
      properties:
        success:
          type: boolean
          example: false
        error:
          $ref: '#/components/schemas/HttpErrorBodyDto'
      required:
        - success
        - error
    LocalPayoutNetworkDto:
      type: object
      properties:
        id:
          type: string
          description: Opaque network id — pass back verbatim when creating a recipient.
        name:
          type: string
          description: Display name, e.g. "GTBank" or "M-Pesa".
        code:
          type: string
          description: Optional bank short code (e.g. NUBAN routing prefix).
      required:
        - id
        - name
    HttpErrorBodyDto:
      type: object
      properties:
        code:
          type: string
          example: VALIDATION_ERROR
        message:
          type: string
          example: email must be an email
        statusCode:
          type: number
          example: 400
        errors:
          type: object
          description: >-
            Optional per-field validation messages (when present on the source
            exception)
          additionalProperties:
            type: array
            items:
              type: string
      required:
        - code
        - message
        - statusCode
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````