DTH Advance Information Code Examples

Telecom
POST /api/v1/dth/info Bearer

Ready-to-run DTH Advance Information calls. Replace YOUR_API_KEY with the key from your dashboard.

DTH Advance Information — Code Samples

cURL
PHP
Fetch
jQuery
Axios
Python
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"}'

Expected Response — 200

{
    "status": "SUCCESS",
    "status_code": 200,
    "charged": true,
    "success": true,
    "message": "",
    "message_code": "OK",
    "order_id": "W2A1739512345abcdef01",
    "data": {
        "order_id": "W2A1739512345abcdef01",
        "result": {
            "dth_number": "01234567890",
            "operator": "dish_tv",
            "customer_id": "9700000123",
            "name": "Lakshmi Priya",
            "registered_mobile": "98XXXXXX10",
            "balance": "194.73",
            "monthly_amount": "",
            "status": "1",
            "plan": "",
            "next_recharge_date": "8/4/2026 12:00:00 AM",
            "last_recharge_date": "N/A",
            "last_recharge_amount": "N/A",
            "switch_off_date": "8/7/2026 12:00:00 AM",
            "address": "12 MAIN ROAD, VILLIANUR, PONDICHERRY, Pin - 605110",
            "city": "PONDICHERRY",
            "district": "",
            "state": "PONDICHERRY",
            "pin_code": "605110"
        }
    }
}