DTH Operator Check Request
TelecomHow to call DTH Operator Check — the endpoint, the headers it expects, and every request parameter with its type.
Endpoint
POST
https://app.way2api.com/api/v1/dth/operator-check
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. 70512345661). Exact length depends on the operator. |
Request Body
{
"dth_number": "70512345661"
}
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