Create Withdrawal
This guide is used for sending cryptocurrency from your wallet to an external blockchain address
Last updated
This guide is used for sending cryptocurrency from your wallet to an external blockchain address
POST /withdraw-crypto
This endpoint allows users to withdraw cryptocurrency from their account to a specified destination address
Headers
Content-Type
application/json
Authorization
Bearer <token>
Request Body
Ensure that the sending and receiving addresses are valid to avoid transaction failures
The request body must be in JSON format and include the following parameters:
amount
string
The amount of cryptocurrency to be withdrawn
currency
string
The type of cryptocurrency being withdrawn (e.g. USDT)
sending_address
string
The address from which the cryptocurrency will be sent
receiving_address
string
The address to which the cryptocurrency will be sent
transaction_id
string
A unique identifier for the transaction
Response
{
"status": "1",
"message": "Withdrawal request sent, waiting confirmation"
}{
"error": "Invalid request"
}Last updated