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

Key
Value
Description

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

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

The sender’s wallet address for the transaction.

The wallet address receiving the transaction.

Last updated