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
  • User Balance
  • User Currency Balance
  • Transfer Funds
  • Transfer Funds
  1. API Reference
  2. Private APIs
  3. Wallet

Fiat And Spot

In the context of cryptocurrency exchanges and trading platforms, you'll commonly encounter the terms "spot trading" and "spot market," where users can trade cryptocurrencies in real-time for immediate settlement using fiat currencies or other cryptocurrencies

User Balance

User Currency Balance

GET {{BASE_NODE_URL}}/user-crypto/send/get

In this API we have user all crypto balance data.

Headers

Name
Type
Description

Authorization*

String

jwt token

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

Transfer Funds

Transfer Funds

POST {{BASE_NODE_URL}}/user-crypto/transfer/credit

Here we tranfer funds from spot balance to funding balance or funding to spot balance.

Headers

Name
Type
Description

Authorization*

String

jwt token

Request Body

Name
Type
Description

amount*

String

currency*

String

from_wallet*

String

to_wallet*

String

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

PreviousWithdrawNextStaking

Last updated 6 months ago