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

# List payout providers

> Returns supported payout providers for a country and beneficiary type, including a provider code when a mobile-money operator supports local payouts.



## OpenAPI

````yaml openapi.json get /v1/payouts/providers
openapi: 3.0.0
info:
  title: Inflow API
  version: 1.0.0
  description: API service for managing customer cards
  contact:
    name: API Support
servers:
  - url: https://sandbox.inflowafrica.com/api
    description: Sandbox
  - url: https://app.inflowpay.net/api
    description: Production
  - url: http://localhost:3000/api
    description: Local
security:
  - bearerAuth: []
tags: []
paths:
  /v1/payouts/providers:
    get:
      tags:
        - External API - Payouts
      summary: List payout providers
      description: >-
        Returns supported payout providers for a country and beneficiary type,
        including a provider code when a mobile-money operator supports local
        payouts.
      parameters:
        - in: query
          name: country_iso_code
          required: true
          schema:
            type: string
            example: KE
          description: ISO 3166-1 alpha-2 country code
        - in: query
          name: type
          required: true
          schema:
            type: string
            enum:
              - bank_account
              - mobile_money
          description: Beneficiary type
      responses:
        '200':
          description: Payout provider list
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Enter JWT token
    apiKeyAuth:
      type: http
      scheme: bearer
      description: Enter your API key starting with gtw_sk_

````