1. Account
Asteria API DOCs
  • Getting Started
  • Webhooks
  • Auth
    • Validate & Generate Access Token
      POST
  • Collections
    • Pay via Bank Transfer
      • Get Banks
      • Generate Dynamic VIrtual Account
      • Check Payment Status
    • Cards
      • Generate Payment Advice
      • Charge Card
    • Mpesa
      • Mpesa API
  • Payouts
    • Get Bank List
      GET
    • Validate Account
      POST
    • Initiate Transfer
      POST
    • Check Payout Status
      POST
  • Account
    • Get Wallet Balance
      GET
  1. Account

Get Wallet Balance

Developing
GET
https://dev-gateway.mydartdigital.com/account/wallets/get-wallets

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or

Responses

🟢200Success
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://dev-gateway.mydartdigital.com/account/wallets/get-wallets' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "responseStatus": "00",
    "message": "All wallets ",
    "getAllWallets": [
        {
            "balance": "1285",
            "currency": "NGN"
        },
        {
            "balance": "180.070735",
            "currency": "USDT"
        },
        {
            "balance": "197.14147",
            "currency": "USDT"
        }
    ]
}
Modified at 2026-06-04 09:50:39
Previous
Check Payout Status
Built with