Indian Prepaid Recharge Plans Request
TelecomHow to call Indian Prepaid Recharge Plans — the endpoint, the headers it expects, and every request parameter with its type.
Endpoint
POST
https://app.way2api.com/api/v1/mobile/recharge-plans
Headers
Authorization: Bearer your_api_key_here
Content-Type: application/json
Parameters (application/json)
| Parameter | Type | Required | Description |
|---|---|---|---|
| operator | string | Required | Prepaid operator. Accepted values: airtel, jio, vi (Vodafone Idea), bsnl. Case, spaces and punctuation are ignored, and common alternative names such as reliance_jio, vodafone, idea and vodafone_idea are accepted. |
| circle | string | Required | Telecom circle. Accepted values: andhra_pradesh, assam, bihar, chennai, delhi, gujarat, haryana, himachal_pradesh, jammu_kashmir, karnataka, kerala, kolkata, madhya_pradesh, maharashtra, mumbai, north_east, odisha, punjab, rajasthan, tamil_nadu, up_east, up_west, west_bengal. Case, spaces and punctuation are ignored ("UP (East)" and "J&K" both work), and a state that shares a circle resolves to that circle: goa to maharashtra, telangana to andhra_pradesh, jharkhand to bihar, chhattisgarh to madhya_pradesh, uttarakhand to up_west, sikkim to west_bengal and the north-eastern states to north_east. |
Request Body
{
"operator": "airtel",
"circle": "karnataka"
}
cURL
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"}'
🚀 Send Request