DTH Advance Information Request
TelecomHow to call DTH Advance Information — the endpoint, the headers it expects, and every request parameter with its type.
Endpoint
POST
https://app.way2api.com/api/v1/dth/info
Headers
Authorization: Bearer your_api_key_here
Content-Type: application/json
Parameters (application/json)
| Parameter | Type | Required | Description |
|---|---|---|---|
| dth_number | string | Required | DTH subscriber / customer ID — 9 to 13 digits (e.g. 01234567890). The exact prefix and length are set by the operator and differ between them, so the operator rejects a well-formed ID that does not match its own scheme. |
| operator | string | Required | DTH operator of the connection. Accepted values: airtel_dth, dish_tv, reliance_bigtv, sun_direct, tata_play (alias tata_sky), videocon_d2h (alias d2h). Use the DTH Operator Check API if the operator is unknown. |
Request Body
{
"dth_number": "01234567890",
"operator": "dish_tv"
}
cURL
curl -X POST https://app.way2api.com/api/v1/dth/info \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"dth_number":"01234567890","operator":"dish_tv"}'
🚀 Send Request