Fuspay
WebsiteSupportDemo Meeting
  • Overview
    • Welcome
  • API ONBOARDING
    • Introduction
    • Partner Onboarding
    • Regenerate Partner Keys
    • IP Check & Whitelisting
  • API Onboarding
  • Authentication
    • Swap, Collection, & P2P Automation
  • Webhook Validation & Request Integrity
  • Currency Swap
    • Introduction
    • Authentication
      • Partner Onboarding Endpoints
      • Partner Activate Endpoint
      • Regenerate Partners Public & Private Keys
      • Digital Signature
    • User KYC
      • Create KYC
      • Verify KYC Status
      • Reconciliation
      • Post KYC Data
    • Exchange Rate
    • Buy
      • Create Order
      • Events
    • Sell
      • Create Order
      • Events
    • Transaction Resolution
      • Overview
      • Log Issue
      • Check Issue Status
    • Transaction Records
      • Pending Transaction
      • Get Single Order Endpoint
      • Get Multiple Order Endpoint
      • Sell/Payout Verification Endpoint
    • Provider/Bank Codes
  • Virtual card
    • Introduction
      • Getting Started
        • Partner Onboarding
        • Partner Activate Endpoint
    • Authentication
    • Partner
      • Create Merchant
      • List of Merchants
    • Merchant
      • Create User
      • Verify User KYC Status
      • List Users
    • User
      • Create Card
      • Fetch Cards
      • Get Card Details
    • Card
      • Fund Card
      • Freeze Card
      • Delete Card
    • Payments
      • Withdraw From Card
      • Withdrawal History
    • Transactions
      • Card Transactions
      • Export Card Transactions
      • Filter Card Transactions
    • Wallet
      • Merchant Wallet Balance
      • Card Wallet Balance
  • Collection and payout
    • Introduction
    • Onboarding
    • Getting Started for Partner
      • Partner Onboarding Endpoints
      • IP Capture & Whitelisting
      • Regenerate Partners Pub/Priv Keys
    • Getting Started for Merchant
    • Collection
      • Digital Signatures
      • Collection (GHS, KHS, ZAR)
      • Collection (Virtual Account-NGN )
      • Fetch Order
      • Assigning Virtual Accounts
        • Get Available Assignable Virtual Account
        • Check if specific account is available for use
        • Create Order- using Available Virtual Account from your Account Pool
        • Cancel Order
      • Get Mobile Money Providers
    • Payout
      • Account verification
      • Payout
      • Payout Status
      • Crypto Withdrawal
        • Wallet Balance
        • Withdrawal Payout
        • Get Withdrawal Payout Fee
      • Bank and Bank Codes
    • Transaction History
      • Get Transaction Records
  • P2p Automation
    • Integration Journey (API-Dashboard)
  • Payment and Utilities
    • Introduction
      • Sign Up
      • Compliance
      • Create an App
      • Configure App
    • Authentication
    • User Onboarding
    • Error Handling
    • Plugin (Frontend)
      • Integrating Finswich checkout via NPM or Yarn
      • Integrating the Finswich Checkout on your Vanilla Javascript app
      • Steps for integrating Finswich Checkout via Flutter
      • Pseudocode for Integrating Finswich Checkout in Application (Native iOS & Android)
    • Services (Backend)
      • Inter-wallet Transfer
      • Bank Transfer
      • Wallet Funding
      • Utility Purchases
  • KYC As A Service
    • Introduction
    • App Registration Endpoint
    • App Activate/Verify Endpoint
    • Request Verification Token
    • KYC (Individual)
      • Get KYC Types
      • Create KYC Request
      • Get Verification Status and User's Data
      • Create order with meta data
      • Migrate
    • KYC (Business)
      • Get KYC Types
      • Create KYC Request
      • Get Verification Status and User's Data
    • Face Stamp
      • Create Facestamp Order
      • Create OTP
      • Verify OTP
      • Post Transaction Data
    • KYC(Transactional)
    • Callbacks (Webhook Responses)
Powered by GitBook
On this page
  • Available Endpoints
  • Wallet Balance
  • Header:
  • Request
  • Withdrawal Payout
  • Get Withdrawal Payout Fee
  • Header:
  • Request
  • Request Body
  1. Collection and payout
  2. Payout

Crypto Withdrawal

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

PreviousPayout StatusNextWallet Balance

Last updated 6 months ago

This 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

Header:

your-fuspay-secret-key

Request

{

}

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

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,
}
{
  "status": "error",
  "message": 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,
}
{
  "status": "error",
  "message": String,
}
doc