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
  • Withdraw Coin Fee
  • estimate withdraw coin fee
  • Query Payout Channel
  • Query supported bankCodes and walletCodes
  1. Reference
  2. API Reference

Fee

Retrieves service fee

PreviousConversionNextWebHook

Last updated 11 months ago

Every request must contain

Demo code can be found at

Withdraw Coin Fee

estimate withdraw coin fee

POST /v1/fee/estimate

Request Body

Name
Type
Description

currency*

String

the name of crypto asset

amount*

String

The requested amount to estimate

{
    code: '200',
    data: {
      partner_id: '2000051',
      currency: 'TRX',
      fee_amount: '1.1',
      min_threshold: '0',
      decimals: 18
    },
    message: 'success'
  }

Query Payout Channel

Query supported bankCodes and walletCodes

POST https://api.musepay.io/v1/fee/queryPayoutChannel

Request Body

Name
Type
Description

country*

String

currency*

String

{"code":"200",
     "data":{
       "banks":
          [{"code":"1000120","enName":"Bank BCA","enShortName":"Bank BCA","localName":"Bank BCA","localShortName":"Bank BCA"},
          {"code":"1000153","enName":"Bank BRI","enShortName":"Bank BRI","localName":"Bank BRI","localShortName":"Bank BRI"}
          ],
       "wallets":
            [{"code":"ovo","enName":"ovo","enShortName":"ovo","localName":"ovo","localShortName":"ovo"},
             {"code":"dana","enName":"dana","enShortName":"dana","localName":"dana","localShortName":"dana"},
             {"code":"linkaja","enName":"LinkAja","enShortName":"LinkAja","localName":"LinkAja","localShortName":"LinkAja"},
             {"code":"gopay","enName":"Gopay","enShortName":"Gopay","localName":"Gopay","localShortName":"Gopay"},
             {"code":"shopeepay","enName":"ShopeePay","enShortName":"ShopeePay","localName":"ShopeePay","localShortName":"ShopeePay"}
             ]
      },
 "message":"success"}
common parameters
Github