GET
/
wallets
/
{wallet_id}
/
balances
/
{balance_id}
curl --request GET \
  --url https://api.live.paisr.tech/{version}/wallets/{wallet_id}/balances/{balance_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "bca_123456",
    "title": "SRD Balance",
    "currency": {
      "code": "SRD",
      "symbol": "$"
    },
    "balance": {
      "running": 750170.75,
      "holding": 0
    },
    "frozen": false,
    "type": "primary",
    "created_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

wallet_id
string
required

The Wallet ID.

balance_id
string
required

The Balance ID.

Response

200
application/json
Successfully retrieved wallet balance details.
success
boolean
Example:

true

data
object