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

# Get Mobile Networks

> Retrieves a list of supported mobile money networks for a specific country and currency.

<Tip>
  This Endpoint is optional for Kenyan Mobile Money Collections.
</Tip>


## OpenAPI

````yaml get /v1/mobileMoneyOperator
openapi: 3.0.3
info:
  title: meCash API
  version: 3.0.3
  description: >-
    API for meCash services, including FIAT and Ramp operations. This is the
    OpenAPI specification for the meCash API, covering all available endpoints
    for wallet management, currency quotes, and payouts.


    It follows a design-first approach based on OpenAPI 3.0.


    Authentication is handled via an API key passed in the `x-api-key` header.
    Replace `YOUR_API_KEY` with your actual key when making requests.


    Some useful links:

    - [meCash Documentation](https://docs.me-cash.com/)

    - [Authentication Guide](https://docs.me-cash.com/authentication)
servers:
  - url: https://sandboxapi.me-cash.com
    description: Sandbox Server for Testing
security:
  - ApiKeyAuth: []
tags:
  - name: Wallet
    description: Wallet management operations
  - name: Quote
    description: Currency quote operations
  - name: Payout
    description: Payout operations
  - name: Transaction
    description: Transaction management
  - name: Virtual Account
    description: Virtual account operations for static and dynamic accounts
  - name: Bank
    description: Bank account and list operations
  - name: Ramp
    description: Ramp operations for crypto
  - name: Miscellaneous
    description: Utility and miscellaneous operations
  - name: Collection
    description: Mobile money and wallet funding operations
  - name: Bulk Payout
    description: >-
      Bulk transfer operations for sending to multiple beneficiaries in a single
      request
paths:
  /v1/mobileMoneyOperator:
    get:
      tags:
        - Collection
      summary: Get Mobile Networks
      description: >-
        Retrieves a list of supported mobile money networks for a specific
        country and currency.
      operationId: getMobileMoneyOperators
      parameters:
        - name: country
          in: query
          required: true
          schema:
            type: string
            example: MW
          description: The country code to fetch the networks available (e.g., MW, RW, KE)
        - name: currency
          in: query
          required: true
          schema:
            type: string
            example: MWK
          description: Currency code (e.g., MWK, RWF, KES)
      responses:
        '200':
          description: Mobile money providers fetched successfully.
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/Success'
                  - type: object
                    properties:
                      data:
                        type: array
                        items:
                          $ref: '#/components/schemas/MobileMoneyOperator'
              example:
                message: recipient mobile networks fetched successfully
                status: success
                data:
                  - name: TNM Mpamba
                    country: MW
                    code: TNM Mpamba
                  - name: Airtel Money
                    country: MW
                    code: Airtel Money
components:
  schemas:
    Success:
      type: object
      properties:
        status:
          type: string
          example: success
        message:
          type: string
          example: Operation completed successfully.
        data:
          type: object
          description: The payload of the successful response.
      required:
        - status
        - message
    MobileMoneyOperator:
      type: object
      properties:
        name:
          type: string
          example: Airtel Money
        country:
          $ref: '#/components/schemas/CountryCode'
        code:
          type: string
          example: Airtel Money
    CountryCode:
      type: string
      description: Country code (ISO 3166-1 alpha-2).
      example: NG
      enum:
        - NG
        - US
        - GB
        - DE
        - MW
        - CA
        - SG
        - KR
        - TH
        - MY
        - VN
        - CN
        - GH
        - CI
        - KE
        - RW
        - SN
        - ZA
        - AT
        - DK
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````