Wallet Withdraw

The process of transferring funds from a user’s wallet to an external address.

POST https://exchanger-api.fuspay.finance/api/v1/no-auth/StableCoins/Withdraw

AUTHORIZATION

Key
Value
Description

Token

<token>

Token is a secure string used to authenticate and authorize API requests.

Key
Value
Description

Content-Type

application/json

x-merchant-id

xxxxxxxx

BODY

{
	"user_email": "[email protected]",
	"chain": "usdt-pol",
	"amount": 100,
    "from_address": "xxxxx",
	"receiver_address": "yyyy"
}

EXAMPLE REQUEST

curl --location -g '{{ _.base_url }}/api/v1/no-auth/StableCoins/Withdraw' \
--header 'Content-Type: application/json' \
--header 'x-merchant-id: xxxxxxxx' \
--data-raw '{
	"user_email": "[email protected]",
	"chain": "usdt-pol",
	"amount": 100,
    "from_address": "xxxxx",
	"receiver_address": "yyyy"
}'
Key
Value
Description
user_email

Used to identify the user, send notifications, and support login and account recovery.

chain
usdt-pol

Specifies the USDT network used, in this case, Polygon (POL).

amount
 100

from_address
xxxxx

The sender’s wallet address for the transaction.

receiver_address
yyyy

The wallet address receiving the transaction.

Last updated