Telecom API India

Indian Prepaid Recharge Plans

Get every prepaid recharge plan an Indian mobile operator currently sells in one telecom circle, for Airtel, Jio, Vi (Vodafone Idea) and …

Request Example

<?php $ch = curl_init(); curl_setopt_array($ch, [ CURLOPT_URL => "https://app.way2api.com/api/v1/mobile/recharge-plans", CURLOPT_RETURNTRANSFER => true, CURLOPT_POST => true, CURLOPT_HTTPHEADER => [ "Authorization: Bearer YOUR_API_KEY", "Content-Type: application/json" ], CURLOPT_POSTFIELDS => json_encode([ "operator" => "airtel", "circle" => "karnataka" ]) ]); $response = curl_exec($ch); $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); $data = json_decode($response, true); print_r($data);
const response = await fetch("https://app.way2api.com/api/v1/mobile/recharge-plans", { method: "POST", headers: { "Authorization": "Bearer YOUR_API_KEY", "Content-Type": "application/json" }, body: JSON.stringify({ "operator": "airtel", "circle": "karnataka" }) }); if (!response.ok) { throw new Error(`HTTP error: ${response.status}`); } const data = await response.json(); console.log(data);
curl -X POST https://app.way2api.com/api/v1/mobile/recharge-plans \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"operator":"airtel","circle":"karnataka"}'
$.ajax({ url: "https://app.way2api.com/api/v1/mobile/recharge-plans", type: "POST", contentType: "application/json", headers: { "Authorization": "Bearer YOUR_API_KEY" }, data: JSON.stringify({ "operator": "airtel", "circle": "karnataka" }), success: function(data) { console.log(data); }, error: function(xhr) { console.error(xhr.responseJSON); } });
const { data } = await axios.post( "https://app.way2api.com/api/v1/mobile/recharge-plans", {"operator":"airtel","circle":"karnataka"}, { headers: { "Authorization": "Bearer YOUR_API_KEY" } } ); console.log(data);
import requests response = requests.post( "https://app.way2api.com/api/v1/mobile/recharge-plans", headers={ "Authorization": "Bearer YOUR_API_KEY", "Content-Type": "application/json" }, json={ "operator": "airtel", "circle": "karnataka" } ) print(response.status_code) print(response.json())

Response Example

200 OK Success Response
{
    "success": true,
    "message": "",
    "data": {
        "order_id": "W2A1739512345abcdef01",
        "result": {
            "operator": "airtel",
            "circle": "karnataka",
            "plan_count": 4,
            "plans": [
                {
                    "category": "popular",
                    "category_label": "Trending Packs",
                    "amount": 399,
                    "validity": "28 days",
                    "validity_days": 28,
                    "description": "Calls : Unlimited | Data : Unlimited 5G + 2.5GB/day | SMS : 100/day | COMBO : 28 days",
                    "status": "active"
                },
                {
                    "category": "unlimited",
                    "category_label": "Unlimited 5G Plans",
                    "amount": 429,
                    "validity": "1 month",
                    "validity_days": null,
                    "description": "Calls : Unlimited local STD & Roaming | Data : Unlimited 5G + 2.5GB/day | SMS : 100/Day",
                    "status": "active"
                },
                {
                    "category": "data",
                    "category_label": "Data",
                    "amount": 77,
                    "validity": "7 days",
                    "validity_days": 7,
                    "description": "Data: 5GB | COMBO: 7 days",
                    "status": "active"
                },
                {
                    "category": "topup",
                    "category_label": "TOPUP (top up voucher)",
                    "amount": 500,
                    "validity": "",
                    "validity_days": null,
                    "description": "TOPUP : 423.73",
                    "status": "active"
                }
            ]
        }
    }
}
4xx Error Response
{
    "success": false,
    "message": "Recharge plans could not be fetched for this operator and circle right now. Please try again shortly.",
    "data": {
        "order_id": "W2A1739512345abcdef01",
        "error_code": "VENDOR_ERROR"
    }
}

Common Response Codes

Code Meaning
200 OK — Request successful
400 Bad Request — Missing or invalid parameters
401 Unauthorized — Invalid or missing API key
429 Too Many Requests — Rate limit exceeded
500 Server Error — Try again later

Ready to integrate?

Start with 1,000 free trial calls on this API. No credit card required.

Get API Key — Free Browse All APIs

Related Telecom APIs

Other Way2API endpoints in the same category.

Way2API Way2API
Contact Way2API

Login