Withdraw

Withdrawing cryptocurrency typically involves moving your digital assets from one wallet or account to another.

Wallet Transaction Data

Wallet Transaction History

GET {{BASE_URL}}/api/wallet-trans/get

It is a record of all incoming and outgoing transactions associated with that wallet. This history provides a detailed view of how the wallet has been used, showing every transaction's date, time, amount, and status.

Headers

Name
Type
Description

Authorization*

String

jwt token

{
    "status_code": "Integer", // 1
    "status_text": "String", // Success
    "message": "String",
    "data":"Array"
}

Withdraw

Withdraw API

POST {{BASE_URL}}/api/withdraw/process

Here user send crypto from his wallet to another user wallet.

Headers

Name
Type
Description

Authorization*

String

jwt token

Request Body

Name
Type
Description

token_type*

String

amount*

String

toAddress*

String

currency*

String

{
    "status_code": "Integer", // 1
    "status_text": "String", // Success
    "message": "String"
}

Verify Withdraw

Verify Withdraw

POST {{BASE_URL}}/api/withdraw/verify

Before withdraw crypto user verify the details those are filled by user at the time of withdraw.

Headers

Name
Type
Description

Authorization

String

jwt token

Request Body

Name
Type
Description

token_type*

String

amount*

String

toAddress*

String

currency*

String

{
    "status_code": "Integer", // 1
    "status_text": "String", // Success
    "message": "String"
}

Last updated