Home
About
Join Today
Join Today
  • Sign Up
  • Sign In
Conatct Us
Home
About
Join Today
Join Today
  • Sign Up
  • Sign In
Conatct Us
  1. Recharge
  • Introduction
  • Getting Started
  • Authentication
  • HTTPS Status Codes
  • Rate Limits
  • Callbacks
    • Recharge Callback
  • NSDL Account Opening
    • BC Agent Onboarding
      POST
    • Create Account
      POST
    • Account Status
      GET
  • Recharge
    • Operator List
      GET
    • HLR Check
      POST
    • DTH Info
      POST
    • Browse Plans
      POST
    • Initiate Recharge
      POST
    • Check Status
      GET
  • Bill Payment
    • Biller List
      POST
    • Fetch Bill
      POST
    • Bill Pay
      POST
  • Verification Suite
    • Digilocker
      • Initiate
      • Check Status
      • Download Aadhaar
    • Aadhaar
      • Send OTP
      • Verify OTP
    • UPI Verification
      POST
    • Bank Verification
      POST
    • PAN Verification
      POST
    • GSTIN Verification
      POST
  • Comunications API
    • Send SMS OTP
    • Send Whatsapp OTP
  1. Recharge

Operator List

GET
/api/v1/recharge/operator-list
📡 Operator List API
Retrieve a complete list of supported telecom and DTH operators available on the platform. This API helps merchants dynamically load operator options inside recharge forms, ensuring users always select valid operators for mobile prepaid, postpaid, and DTH services. Ideal for building operator dropdowns, onboarding new services, and maintaining updated operator mappings without manual configuration.

Request

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/recharge/operator-list' \
--header 'x-client-id: {{client_id}}' \
--header 'x-client-secret: {{client_secret}}' \
--header 'Content-Type: application/json'

Responses

🟢200Success
application/json
Body

Example
{
    "response_code": 200,
    "status": "success",
    "message": "Operators List fetched successfully",
    "data": {
        "operators": [
            {
                "id": 11,
                "name": "Airtel",
                "category": "Prepaid"
            },
            {
                "id": 12,
                "name": "Airteldth",
                "category": "DTH"
            },
            {
                "id": 13,
                "name": "BSNL",
                "category": "Prepaid"
            },
            {
                "id": 14,
                "name": "Dish TV",
                "category": "DTH"
            },
            {
                "id": 4,
                "name": "Idea",
                "category": "Prepaid"
            },
            {
                "id": 18,
                "name": "Jio",
                "category": "Prepaid"
            },
            {
                "id": 33,
                "name": "MTNL Delhi",
                "category": "Prepaid"
            },
            {
                "id": 34,
                "name": "MTNL Mumbai",
                "category": "Prepaid"
            },
            {
                "id": 27,
                "name": "Sun Direct",
                "category": "DTH"
            },
            {
                "id": 8,
                "name": "Tata Sky",
                "category": "DTH"
            },
            {
                "id": 10,
                "name": "Videocon",
                "category": "DTH"
            },
            {
                "id": 22,
                "name": "Vodafone",
                "category": "Prepaid"
            }
        ]
    },
    "meta": {
        "request_id": "576c454e-53b8-4c49-97d8-7a2ef3f3716f",
        "time": "2026-02-22T15:18:38+05:30"
    }
}
🟠401Unauthorized
Previous
Account Status
Next
HLR Check
Built with