Balance
This endpoint allows you to check the balance of your account's wallet.
Endpoint
GET https://api.atglow.com/api/v1.0/balances
Response
{
"data": [
{
"currency": "GBP",
"amount": "-75000",
"amount_decimal": "-750.00",
"formatted_amount": "(£750.00)",
"updated_at": "2024-03-06T21:49:02.000000Z",
"limits": {
"daily": {
"limit": {
"amount": "100000",
"currency": "GBP",
"formatted": "£1,000.00"
},
"remaining": {
"amount": "25000",
"currency": "GBP",
"formatted": "£250.00"
}
},
"monthly": {
"limit": {
"amount": "100000",
"currency": "GBP",
"formatted": "£1,000.00"
},
"remaining": {
"amount": "25000",
"currency": "GBP",
"formatted": "£250.00"
}
}
}
},
{
"currency": "USD",
"amount": "0",
"amount_decimal": "0.00",
"formatted_amount": "$0.00",
"updated_at": "2024-03-05T21:58:08.000000Z",
"limits": {
"daily": {
"limit": {
"amount": "100000",
"currency": "USD",
"formatted": "$1,000.00"
},
"remaining": {
"amount": "25000",
"currency": "USD",
"formatted": "$250.00"
}
},
"monthly": {
"limit": {
"amount": "100000",
"currency": "USD",
"formatted": "$1,000.00"
},
"remaining": {
"amount": "25000",
"currency": "USD",
"formatted": "$250.00"
}
}
}
}
]
}
Field | Type | Description |
|---|---|---|
currency | string | The currency of the balance |
amount | string | The amount of the balance in the currencies smallest unit |
amount_decimal | string | The amount of the balance as a decimal |
formatted_amount | string | The amount of the balance formatted as a string with symbol |
updated_at | object | The date and time the balance was last updated |
limits | object | Accounts are protected from excessive spending by account limits, the limit object contains the limit and remaining limit allowance. |
Last modified: 29 April 2024