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

# Get Phone Number Operators

> Retrieves the mobile money operator details for a given phone number, based on the number, currency, and country provided.



## OpenAPI

````yaml POST /api/b2b/utilities/operators/phone
openapi: 3.1.0
info:
  title: Zerocash API
  version: 1.0.0
  description: >-
    The Zerocash API lets you collect payments (charges) and disburse funds
    (payouts) across supported markets through a single, unified integration.
servers:
  - url: https://api.zerocash.tech
security:
  - bearerAuth: []
tags:
  - name: Authentication
    description: Obtain and manage API credentials.
  - name: Reference Data
    description: Look up countries, banks, operators, and rates before transacting.
  - name: Charges
    description: Collect payments from your customers.
  - name: Payouts
    description: Disburse funds to recipients.
  - name: Transactions
    description: Retrieve and reconcile transactions.
  - name: Webhooks
    description: Receive and replay real-time event notifications.
paths:
  /api/b2b/utilities/operators/phone:
    post:
      tags:
        - Reference Data
      summary: Get Phone Number Operators
      description: >-
        Retrieves the mobile money operator details for a given phone number,
        based on the number, currency, and country provided.
      operationId: phone-number-operators
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
                - currency
                - country
                - phoneNumber
              properties:
                currency:
                  type: string
                  description: Currency must be in ISO 4217 format
                country:
                  type: string
                  description: Country must be in ISO 3166-1 alpha-2 format
                phoneNumber:
                  type: string
                  description: Phone number must be in E.164 format (e.g., +1234567890).
            examples:
              JSON:
                value:
                  currency: KES
                  country: KE
                  phoneNumber: '+254127614739'
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value:
                    success: true
                    data:
                      - safaricom
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                    default: true
                  data:
                    type: array
                    items:
                      type: string
                      example: safaricom
        '400':
          description: '400'
          content:
            application/json:
              examples:
                Result:
                  value:
                    success: false
                    message: Unknown network prefix.
                    errorCode: 'E-API-GN-UTL.S-232 '
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                    default: true
                  message:
                    type: string
                    example: Unknown network prefix.
                  errorCode:
                    type: string
                    example: 'E-API-GN-UTL.S-232 '
      deprecated: false
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````