πŸ‘€Account API

Get Balance

GET https://coinstack.net/api/v1/account

Headers

Name
Type
Description

X-API-KEY*

String

Account API key

{
   "success":true,
   "response":{
      "account":{
         "accountID":"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
         "balance":{
            "BTC":"0.00000000",
            "ETH":"0.00000000",
            "LTC":"0.00000000",
            "BNB":"0.00000000",
            "SOL":"0.00000000",
            "MATIC":"0.00",
            "XRP":"0.00",
            "TRX":"0.00",
            "USDT":"0.00"
         }
      }
   }
}

Get Wallets

GET https://coinstack.net/api/v1/account/wallets

Headers

Name
Type
Description

X-API-KEY*

String

Account API key

Get Charges

GET https://coinstack.net/api/v1/account/charges

Headers

Name
Type
Description

X-API-KEY*

String

Account API key

Withdraw Balance

circle-exclamation

POST https://coinstack.net/api/v1/account/withdraw

Headers

Name
Type
Description

X-API-KEY*

String

Account API key

X-API-SECRET

String

Account API secret

Request Body

Name
Type
Description

currency*

String

Withdrawal currency

amount*

Number

Withdrawal amount

BTC, ETH, LTC, BNB, SOL: 8 decimal places

MATIC, XRP, TRX,USDT,USDT-MATIC,USDC-MATIC: 2 decimal places

address*

String

Withdrawal address

Last updated