List view
Getting Started
Getting Started
Authentication Guide
Authentication Guide
PIX Brazil
PIX Brazil
PagoMovil Venezuela
PagoMovil Venezuela
SPEI Mexico
SPEI Mexico
PSE Colombia
PSE Colombia
Real-Time Bank Transfers Paraguay
Real-Time Bank Transfers Paraguay
VISA & MasterCard
VISA & MasterCard
Queries on Transactions
Get Balance
7. get_wallet_balance
Description:
Provides the current balance of a service or wallet. This endpoint allows merchants to easily track their available funds and transactions.
URL:
Request Parameters:
Parameter | Type | Description |
service_code | String | Service code, e.g., BT_ARS. |
Expected Response:
Field | Type | Description |
status | String | Status of the request (success, error). |
data.currency | String | Currency code, e.g., ARS. |
data.gross_amount | Float | Total gross amount in the wallet. |
data.net_amount | Float | Net amount available after deductions. |
data.transactions_qty | Integer | Number of transactions processed. |
Example Request:
{ "service_code": "BT_ARS" }
Example Response:
{ "status": "success", "data": { "currency": "ARS", "gross_amount": 31878.07, "net_amount": 31081.39, "transactions_qty": 83 } }