Skip to content

Get wallet balance

GET/api/v1/wallets/{walletBizId}/balanceHMAC

Returns the current balance information for a specific wallet.

Headers

NameTypeRequiredDescription
X-Api-KeystringYesAPI key identifier
X-SignaturestringYesHMAC-SHA256 signature
X-TimestampstringYesUnix timestamp in seconds
X-NoncestringYesUnique request identifier (UUID)

Path Parameters

NameTypeRequiredDescription
walletBizIdstringYesWallet business ID

Request Example

curl -X GET https://api.slaunchx.cc/api/v1/wallets/<walletBizId>/balance \
  -H "X-Api-Key: sk_live_xxx" \
  -H "X-Signature: <computed_signature>" \
  -H "X-Timestamp: 1709337600" \
  -H "X-Nonce: 550e8400-e29b-41d4-a716-446655440000"

Response

Success200
{
  "version": "1.3.0",
  "success": true,
  "code": "2000",
  "message": "SUCCESS",
  "data": {
    "walletBizId": "wlt_abc123",
    "currency": "USD",
    "availableBalance": 1300.25,
    "frozenBalance": 200,
    "totalBalance": 1500.25,
    "updatedAt": "2026-03-02T10:20:30Z"
  }
}

SlaunchX API Documentation