Get Account Balance
GET
/payouts/v3/payments/funding-accountRetrieves the funding account balance linked to your Pine Labs Online account. This API is only available when you have a funding account linked to your Pine Labs Online account.
Requires
Bearer token. Get token →Response
| Name | Type | Description |
|---|---|---|
accountNumber | string | Funding account number. |
branchCode | string | IFSC code of the funding account bank. |
balance | object | Monetary amount with currency (no min/max constraints). Used for fees, tax, and balance values. |
value | integerrequired | Amount in the smallest currency unit (paisa for INR). |
currency | stringrequired | Three-letter ISO 4217 currency code. |
Status Codes
200 | Account balance retrieved successfully. |
400 | |
401 | |
403 | |
500 |
Request
curl --request GET \
--url https://pluraluat.v2.pinepg.in/payouts/v3/payments/funding-account \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN'Run this request
200 OK
{
"accountNumber": "0995300992429",
"branchCode": "UTIB0001111",
"balance": {
"value": 0,
"currency": "INR"
}
}