For the complete documentation index, see llms.txt. This page is also available as Markdown.

Create Withdrawal

This guide is used for sending cryptocurrency from your wallet to an external blockchain address

Create a new user

POST /withdraw-crypto

This endpoint allows users to withdraw cryptocurrency from their account to a specified destination address

Headers

Name
Value

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:

Name
Type
Description

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"
}

Last updated