Crypto Withdrawal

This documentation allows you to withdraw to USDT from your capital wallet

This doc describes how to connect, authenticate and transmit data via Fuspay Wallet System Note: The Fuspay wallet system uses Rivest-Shamir-Adleman (RSA) asymmetric encryption to encrypt and decrypt data via REST API Connect

To access the Fuspay wallet system, you need to download your RSA Digital certificates from your dashboard. The certificates are public and private certificate.

To send data to Fuspay you need to encrypt the request payload with your public certificate and to get response from us, you need to decrypt the response with your private certificate. Also, you must whitelist your server IP address on our system before a successful call can be made. Authentication

To authenticate, you need to add the header - 'your-fuspay-secret-key'. Remember to encrypt your request with your public key and decrypt it with your private key

Available Endpoints

Wallet Balance

This is the endpoint for Wallet Balance.

GET https://exchanger-api.fuspay.finance/gateway/balance

your-fuspay-secret-key

Request

{

}

{
  "status": "success",
  "balance": Number,
  "wallet_address": String,
  "chain": "usdt-trc20"
}

Withdrawal Payout

This is Withdrawal Payout endpoint.

POST https://exchanger-api.fuspay.finance/gateway/payout

Header:

your-fuspay-secret-key

Request Body

Name
Type
Description

amount*

Number

chain*

String

"usdt-trc20"

{
  "status": "success",
  "withdrawal_reference": String,
}

Get Withdrawal Payout Fee

This is the endpoint for withdrawal payout fee.

POST https://exchanger-api.fuspay.finance/gateway/fee

Header:

your-fuspay-secret-key

Request

{

amount: Number,

chain: "usdt-trc20"

}

Request Body

Name
Type
Description

amount*

Number

chain*

String

"usdt-trc20"

{
  "status": "success",
  "withdrawal_reference": String,
}

Last updated