Hambit Web3 Payment API
  1. Wallet
Hambit Web3 Payment API
  • Payment
    • Initiate a Payable Consumption
      POST
  • Dictionary
    • Query Supported Blockchain Types
      GET
    • Query Supported Consumption Types
      GET
    • Query Supported Pay Modes
      GET
    • Query Supported Token Types
      GET
  • Order
    • Query Order Information
      POST
  • Wallet
    • Query Merchant Blockchain Wallet
      POST
  • PING
    • Ping
      GET
  • Schemas
    • Schemas
      • api.ApiResponse
      • crypto.RequestConsumePay
      • crypto.RequestQueryOrder
      • crypto.RequestQueryWallet
      • crypto.ResponseConsumePay
      • crypto.ResponseQueryChainTypes
      • crypto.ResponseQueryConsumptionTypes
      • crypto.ResponseQueryExecutionTypes
      • crypto.ResponseQueryOrder
      • crypto.ResponseQueryTokenTypes
      • crypto.ResponseQueryWallet
      • crypto.WalletBalance
      • ping.Pong
  1. Wallet

Query Merchant Blockchain Wallet

POST
/crypto/query/wallet
Merchants can submit a request to query their own registered blockchain wallet address and its current on-chain balance. The system returns the wallet address and balance for the specified blockchain and token.

Request

Header Params

Body Params application/json

Examples

Responses

🟢200OK
application/json
Result structure, data field is the response body
Body

🟠400Bad Request
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/crypto/query/wallet' \
--header 'access_key;' \
--header 'timestamp;' \
--header 'nonce;' \
--header 'sign;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "chainType": "Bsc"
}'
Response Response Example
200 - Example 1
{
    "code": "string",
    "data": {
        "balanceOnChain": [
            {
                "address": "0x55d398326f99059fF775485246999027B3197955",
                "balance": 1234.560001,
                "tokenType": "USDT"
            }
        ],
        "chainType": "Bsc"
    },
    "desc": "string",
    "msg": "string",
    "success": true
}
Modified at 2025-07-08 08:04:25
Previous
Query Order Information
Next
Ping
Built with