Indian DTH/D2H Recharge Plans Request
TelecomHow to call Indian DTH/D2H Recharge Plans — the endpoint, the headers it expects, and every request parameter with its type.
Endpoint
POST
https://app.way2api.com/api/v1/dth/recharge-plans
Headers
Authorization: Bearer your_api_key_here
Content-Type: application/json
Parameters (application/json)
| Parameter | Type | Required | Description |
|---|---|---|---|
| operator | string | Required | DTH operator. Accepted values: airtel_dth, dish_tv, sun_direct, tata_play (alias tata_sky), videocon_d2h (alias d2h) — the same values DTH Operator Check returns and DTH Advance Information accepts. Case, spaces and punctuation are ignored. |
Request Body
{
"operator": "dish_tv"
}
cURL
curl -X POST https://app.way2api.com/api/v1/dth/recharge-plans \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"operator":"dish_tv"}'
🚀 Send Request