DTH Operator Check

Telecom
POST /api/v1/dth/operator-check Bearer

DTH Operator Check API — Identify which DTH operator a subscriber / customer ID belongs to, without asking the customer. Returns the machine-readable operator slug (e.g. sun_direct) plus the display operator_name. The returned slug is exactly the value the DTH Advance Information API expects, so the two chain together: identify the operator first, then pull the subscriber profile. Removes the most common cause of failed DTH recharges — the customer picking the wrong operator.

Availability

🗺 Country-specific

India

What DTH Operator Check Is Used For

Operator detection

Identify the DTH operator from a customer ID alone, so the subscriber does not have to know it.

Chaining to the full profile

Feed the returned operator slug straight into the DTH Advance Information API to pull the subscriber record.

Checkout friction removal

Drop the operator dropdown from a recharge flow and remove the most common point of user error.

Failed recharge reduction

Stop transactions being sent to the wrong operator and refunded days later.

Quick Start

1. Copy your API key from Dashboard → API Keys
2. Send a POST request to /api/v1/dth/operator-check
3. Pass the key as Authorization: Bearer <key>
4. Read the result from the data object in the JSON response

cURL

curl -X POST https://app.way2api.com/api/v1/dth/operator-check \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"dth_number":"70512345661"}'
🚀 Send Request
✓ Key saved

🔑 Remember API Key

One-click convenience for testing & troubleshooting — no account needed.

1

What it doesSaves your API key in this browser only using localStorage. Next time you open a docs page, the Try It panel is pre-filled automatically.

2

Auto-updatesIf you type a different key into any Try It field, the saved key is replaced instantly — only the most recent key is ever stored.

3

Uncheck to forgetUnchecking “Remember API Key” immediately deletes the stored key and clears the field. While unchecked, nothing is saved even if you type a new key.

4

Re-check to save againChecking the box again saves whatever key is currently in the Try It field.

⚠ Security note: Your key is stored only in your browser and is never sent to any server except as part of the actual API call you send. Do not use this feature on shared or public computers.