API's Endpoint
Mobile Operator 🚢
API's Endpoint
Mobile Operator 🚢
GET
/
api
/
v1
/
service
/
recharge
/
operator
/
mobile
curl --request GET \
--url https://eazype.com/api/v1/service/recharge/operator/mobile \
--header 'Authorization: Basic <encoded-value>'
{
"code": "0x0200",
"status": "SUCCESS",
"message": "success",
"data": [
{
"operatorName": "AIRTEL",
"operatorCode": "ATEL",
"type": "mobile"
},
{
"operatorName": "BSNL TOPUP",
"operatorCode": "BSNLT",
"type": "mobile"
},
{
"operatorName": "BSNL SPECIAL",
"operatorCode": "BSNLS",
"type": "mobile"
},
{
"operatorName": "IDEA",
"operatorCode": "IDEA",
"type": "mobile"
},
{
"operatorName": "RELIANCE JIO",
"operatorCode": "JIO",
"type": "mobile"
},
{
"operatorName": "VODAFONE",
"operatorCode": "VODAFONE",
"type": "mobile"
}
]
}
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/mobile \
--header 'Authorization: Basic <encoded-value>'
{
"code": "0x0200",
"status": "SUCCESS",
"message": "success",
"data": [
{
"operatorName": "AIRTEL",
"operatorCode": "ATEL",
"type": "mobile"
},
{
"operatorName": "BSNL TOPUP",
"operatorCode": "BSNLT",
"type": "mobile"
},
{
"operatorName": "BSNL SPECIAL",
"operatorCode": "BSNLS",
"type": "mobile"
},
{
"operatorName": "IDEA",
"operatorCode": "IDEA",
"type": "mobile"
},
{
"operatorName": "RELIANCE JIO",
"operatorCode": "JIO",
"type": "mobile"
},
{
"operatorName": "VODAFONE",
"operatorCode": "VODAFONE",
"type": "mobile"
}
]
}