Pine LabsDOCS

Get Account Balance

GET/payouts/v3/payments/funding-account

Retrieves 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

NameTypeDescription
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

200Account balance retrieved successfully.
400The request was malformed or missing required fields.
401Authentication failed — missing, expired, or invalid Bearer token.
403The authenticated client does not have permission for this operation.
500An unexpected error occurred on the server.
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": {
    "currency": "INR",
    "value": 19994250900
  }
}