Tradebit API V3.0
  • Introduction
  • Quick Start
  • API Reference
    • Public APIs
      • Auth
      • Crypto
      • Others
    • Private APIs
      • Common
      • Others
      • Orders
      • Support Ticket
      • Wallet
        • Withdraw
        • Fiat And Spot
        • Staking
        • Others
      • Send Token
      • Referrals
      • Profile
        • Security Verification
        • User KYC
        • Others
      • Profile Information
    • Errors Codes
Powered by GitBook
On this page
  • Wallet Transaction Data
  • Wallet Transaction History
  • Withdraw
  • Withdraw API
  • Verify Withdraw
  • Verify Withdraw
  1. API Reference
  2. Private APIs
  3. Wallet

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"
}
{
    "status_code": "Integer", // 0
    "status_text": "String", // Failed
    "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"
}
{
    "status_code": "Integer", // 0
    "status_text": "String", // Failed
    "message": "String"
}

PreviousWalletNextFiat And Spot

Last updated 6 months ago