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

# List mobile money operators

> Payable mobile money operators, synced from the provider. Pick an `operator_ref_id` here before POST /payouts/momo.



## OpenAPI

````yaml /openapi.json get /operators
openapi: 3.1.0
info:
  title: Jenzy Hermes Client API
  version: 1.0.0
  description: >-
    Draw down your prefunded MWK balance as payouts to Malawian banks and mobile
    money. Authenticate with your `jz_live_…` API key as a bearer token.
servers:
  - url: https://api.jenzy.com/v1
    description: Production
security: []
paths:
  /operators:
    get:
      summary: List mobile money operators
      description: >-
        Payable mobile money operators, synced from the provider. Pick an
        `operator_ref_id` here before POST /payouts/momo.
      responses:
        '200':
          description: The operator reference list, with when it was fetched.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OperatorList'
        '401':
          description: Missing, malformed, or revoked API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '503':
          description: Reference data has never been synced — retry later.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    OperatorList:
      type: object
      properties:
        operators:
          type: array
          items:
            $ref: '#/components/schemas/Operator'
        fetched_at:
          type: string
          format: date-time
          description: When this list was last synced from the provider.
      required:
        - operators
        - fetched_at
    ErrorEnvelope:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              enum:
                - validation_error
                - unauthorized
                - forbidden
                - not_found
                - conflict
                - rate_limited
                - internal_error
                - unknown_bank
                - unknown_operator
                - invalid_mobile_number
                - invalid_account_number
                - service_unavailable
                - insufficient_funds
                - rail_disabled
                - amount_limit_exceeded
                - org_limit_exceeded
              description: >-
                Stable identifier a client may branch on — never renamed or
                removed.
            message:
              type: string
          required:
            - code
            - message
      required:
        - error
    Operator:
      type: object
      properties:
        ref_id:
          type: string
          description: The identifier POST /payouts/momo takes as `operator_ref_id`.
        name:
          type: string
          example: Airtel Money
      required:
        - ref_id
        - name
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      description: 'Your Jenzy API key: `Authorization: Bearer jz_live_…`'

````