API's Endpoint
DTH Operator ⛱️
API's Endpoint
DTH Operator ⛱️
GET
/
api
/
v1
/
service
/
recharge
/
operator
/
dth
curl --request GET \
--url https://eazype.com/api/v1/service/recharge/operator/dth \
--header 'Authorization: Basic <encoded-value>'
{
"code": "0x0200",
"status": "SUCCESS",
"message": "success",
"data": [
{
"operatorName": "AIRTEL DTH",
"operatorCode": "ATELDTH",
"type": "dth"
},
{
"operatorName": "DISH TV",
"operatorCode": "DISHTV",
"type": "dth"
},
{
"operatorName": "RELIANCE BIGTV",
"operatorCode": "BIGTV",
"type": "dth"
},
{
"operatorName": "SUN DIRECT",
"operatorCode": "SUNDIRECT",
"type": "dth"
},
{
"operatorName": "TATA SKY",
"operatorCode": "TATASKY",
"type": "dth"
},
{
"operatorName": "VIDEOCON D2H",
"operatorCode": "D2H",
"type": "dth"
}
]
}
Authorizations
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Headers
Response
200
application/json
OK
The response is of type object
.
curl --request GET \
--url https://eazype.com/api/v1/service/recharge/operator/dth \
--header 'Authorization: Basic <encoded-value>'
{
"code": "0x0200",
"status": "SUCCESS",
"message": "success",
"data": [
{
"operatorName": "AIRTEL DTH",
"operatorCode": "ATELDTH",
"type": "dth"
},
{
"operatorName": "DISH TV",
"operatorCode": "DISHTV",
"type": "dth"
},
{
"operatorName": "RELIANCE BIGTV",
"operatorCode": "BIGTV",
"type": "dth"
},
{
"operatorName": "SUN DIRECT",
"operatorCode": "SUNDIRECT",
"type": "dth"
},
{
"operatorName": "TATA SKY",
"operatorCode": "TATASKY",
"type": "dth"
},
{
"operatorName": "VIDEOCON D2H",
"operatorCode": "D2H",
"type": "dth"
}
]
}