curl --location '{{API_BASE_URL}}/virtual-accounts/3bf02992-a9de-41dd-9cb1-243324567811/balance' \
--header 'x-giro-key: {{SECRET_KEY}}' \
--header 'Content-Type: application/json' \
{
  "meta": {
    "statusCode": 200,
    "success": true
  },
  "data": {
    "withdrawableAmount": 0,
    "availableAmount": 0
  }
}

GET {{baseurl}}/virtual-accounts/{{walletId}}/balance

   https://gw.stg.girostack.com/v1

Headers

x-giro-key
string
required

Pass your account’s secret key as the value.

Path Params

walletId
string

This is your wallet’s publicId.

curl --location '{{API_BASE_URL}}/virtual-accounts/3bf02992-a9de-41dd-9cb1-243324567811/balance' \
--header 'x-giro-key: {{SECRET_KEY}}' \
--header 'Content-Type: application/json' \
{
  "meta": {
    "statusCode": 200,
    "success": true
  },
  "data": {
    "withdrawableAmount": 0,
    "availableAmount": 0
  }
}