View an account's balance
With the /account/balance
endpoint, you can retrieve the balance of your account in real-time
Account Balance
GET
https://topups.reloadly.com/accounts/balance
Headers
Name
Type
Description
Authorization
string
Your access token is required as a bearer token in the request's header
{
"balance":550.75,
"currencyCode":"USD",
"currencyName":"US Dollar",
"updatedAt":"2018-12-04 08:45:51"
}
Request samples
curl --location --request GET 'https://topups.reloadly.com/accounts/balance' \
--header 'Accept: application/com.reloadly.topups-v1+json' \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN_HERE' \
--header 'Content-Type: application/json'
Response parameters
Parameter
Type
Description
balance
number
This indicates the current account balance
currencyCode
string
This indicates the account's currency code
currencyName
string
This indicates the account's currency name
updatedAt
string
This indicates the last time a top-up was made from the account
Last updated
Was this helpful?