API DOCS
  • Introduction
  • Getting Started
  • Supported Assets
  • Reference
    • API Reference
      • Common Parameters
      • Order
        • Pay Example
          • MuseWallet Checkout
          • Direct Integration
            • India
              • Wallet
            • Vietnam
              • Virtual_account
              • Qrcode
            • Indonesia
              • Wallet
              • Virtual_account
              • Qrcode
            • Brazil
              • Wallet
            • USA
              • Credit Card
            • Philippine
              • Wallet
              • Qrcode
          • On-Chain
        • Payout Example
          • India
            • BankTransfer
          • Vietnam
            • BankTransfer
          • Brazil
            • WalletTransfer
          • Indonesia
            • WalletTransfer
            • BankTransfer
          • Philippine
            • WalletTransfer
            • BankTransfer
      • Balance
      • Conversion
      • Fee
  • WebHook
  • API Responses
  • Enums
    • Payment Method
    • Payment Type
      • Vietnam
        • qrcode
        • virtual_account
      • Brazil
        • wallet
      • Indonesia
        • virtual_account
        • wallet
        • qrcode
      • India
        • wallet
      • Philippine
    • Payout Method
      • Vietnam
        • Bank
      • Indonesia
        • Bank
        • Wallet
      • Brazil
        • Wallet
      • India
        • bank
      • Philippine
        • Bank
        • wallet
    • Order Type
    • Order Status
    • Country Code
  • Data(Test)
Powered by GitBook
On this page
  • Partner balance
  • partner account balance
  1. Reference
  2. API Reference

Balance

Retrieves the balance information on a specific asset.

PreviousBankTransferNextConversion

Last updated 11 months ago

Every request must contain

Demo code can be found at

Partner balance

partner account balance

POST /v1/balance/partner

Request Body

Name
Type
Description

currency*

String

the name of crypto asset to return balance

{
"data":
   { 
    "currency":"TRX",        
    "balance":"0.200000000000000000",
    "availableBalance":"0.200000000000000000",
    "freezeBalance":"0.000000000000000000",
    "pendingSettleBalance":"0"
   },
"code":"200",
"message":"Success"
}
Code example
// Some code
String respStr = client.queryPartnerBalance(
                "USDT_TRC20",                                //currency
                "2000051",                                   //partner_id
                String.valueOf(System.currentTimeMillis())   //nonce
                );
 System.out.println(respStr);

common parameters
Github