GET
/
api
/
v1
/
service
/
recharge
/
balance
curl --request GET \
  --url https://eazype.com/api/v1/service/recharge/balance \
  --header 'Authorization: Basic <encoded-value>'
{
  "code": "0x0200",
  "status": "SUCCESS",
  "message": "Balance fetched successfully",
  "data": {
    "balance": 40,
    "status": "active"
  }
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200
application/json
OK

The response is of type object.