https://pay.deficopay.com/api/v1/merchant/balancePOST /api/v1/auth/tokenX-Deficopay-Signature header| Header | Value | Required | Description |
|---|---|---|---|
Authorization | Bearer {{auth_token}} | โ | JWT token |
X-Deficopay-Signature | {{x_api_signature}} | โ | HMAC-SHA256 signature of the canonical string |
Content-Type | application/json | โ | Always required |
GET
/api/v1/merchant/balanceHMAC_SHA256(canonical_string, api_key)X-Deficopay-Signature header.{
"success": true,
"data": [
{
"currency": "ARS",
"available": "3200.00",
"pending": "150.00",
"reserved": "100.00",
"total": "3450.00"
},
{
"currency": "BRL",
"available": "800.00",
"pending": "0.00",
"reserved": "0.00",
"total": "800.00"
}
]
}data array represents a balance for one currency.| Field | Type | Description |
|---|---|---|
currency | string | ISO currency code (e.g., ARS, BRL) |
available | string | Funds that are immediately available for payout or new transactions |
pending | string | Funds awaiting confirmation (e.g., recently received or pending) |
reserved | string | Funds temporarily locked (e.g., in active withdrawal or fraud check) |
total | string | Sum of all three balances: available + pending + reserved |