Skip to main content

Get Balances

This endpoint allows customers to fetch their wallet balance, providing real-time visibility into available funds.

Endpoint

GET https://api.mypayd.app/api/v3/accounts/balance

Authorization

Every request must include authentication headers:

AUTHORIZATION: Basic Auth

Username <username>
Password <password>

Response

A successful request returns a JSON object containing the customer’s wallet details, including currency, current balance, available balance, and wallet type.

basic title : "json"
{
"currency": "KES",
"balance": 24.08,
"available_balance": 24.08,
"wallet_type": "fiat"
}