Skip to main content
GET
Get Balance Specific Day

Path Parameters

merchantId
string
required
Merchant ID

Query Parameters

currency
string
Currency code of your deposit account. If not provided, the default value will be DRE.Allowed values: USD, AUD, EUR, GBP, BRL, CAD, CHFExample: BRL
recipient_id
string
ID of your recipientExample: 12
date
string
required
Enter the date in the following format: YYYY-MM-DDExample: 2024-01-15

Response

balance
number
Example: 15000
available_balance
number
Example: 10000
reserve_balance
number
Example: 0
fee
number or null
This field will only be different from null when the account is configured to receive fees in a wallet. Other than in this case, the balance of the other fee account(wallet) that will receive the fees is returned.Default: nullExample: 100

Request Example

Use Cases

Track balance changes over time for reporting and reconciliation:
Verify end-of-day balances for accounting purposes:
Generate balance reports for specific periods:
Create an audit trail of balance changes:

Date Format

The date parameter must be in the format YYYY-MM-DD:
  • ✅ Valid: 2024-01-15
  • ✅ Valid: 2023-12-31
  • ❌ Invalid: 15/01/2024
  • ❌ Invalid: 01-15-2024
  • ❌ Invalid: 2024/01/15

Response Fields

balance

The total balance in the account on the specified date.

available_balance

The balance available for withdrawal or transactions on the specified date.

reserve_balance

The amount held in reserve on the specified date (if applicable).

fee

Fee balance on the specified date (only applicable when the account is configured to receive fees in a wallet).

Best Practices

Historical Data Availability: Balance history is typically available for the past 90 days. Check with your account manager for specific data retention policies.
Rate Limiting: When querying multiple dates, implement rate limiting to avoid hitting API limits. Consider batching requests or adding delays between calls.
Caching: Historical balance data doesn’t change. Cache responses indefinitely to improve performance and reduce API calls.