Skip to main content
GET
/
merchant
/
wallet
/
balances
{
  "success": false,
  "error": {
    "status": 401,
    "code": "UNAUTHORISED",
    "message": "Invalid API key"
  },
  "data": null
}
Get current wallet balances for all supported cryptocurrencies.
success
boolean
Indicates if the request was successful
data.BTC
string
Bitcoin balance
data.ETH
string
Ethereum balance
data.LTC
string
Litecoin balance
data.SOL
string
Solana balance

Example Request

curl -X GET https://api.transaction.gg/merchant/wallet/balances \
  -H "Authorization: Bearer sk_your_secret_key"

Example Response

{
  "success": true,
  "data": {
    "BTC": "0.00123456",
    "ETH": "0.123456789012345678",
    "LTC": "0.12345678",
    "SOL": "1.234567890123456789"
  }
}

Error Responses

{
  "success": false,
  "error": {
    "status": 401,
    "code": "UNAUTHORISED",
    "message": "Invalid API key"
  },
  "data": null
}