request(
"GET",
"/v1/custody/org_info/",
{},
api_key,
api_secret,
host
)
coboFetch('GET', '/v1/custody/org_info/', {}, api_key, api_secret, host)
.then(res => {
res.json().then((data)=>{
console.log(JSON.stringify(data, null, 4));
})
}).catch(err => {
console.log(err)
});
Request("GET", "/v1/custody/org_info/", map[string]string{})
{
"success": true,
"result": {
"name": "test",
"assets": [
{
"coin": "ETH",
"display_code": "ETH",
"description": "Ethereum",
"decimal": 18,
"can_deposit": true,
"can_withdraw": true,
"balance": "0",
"abs_balance": "0",
"fee_coin": "ETH",
"abs_estimate_fee": "0.0003648",
"confirming_threshold": 12,
"dust_threshold": 1,
"token_address": "",
"require_memo": false
},
{
"coin": "BTC_USDT",
"display_code": "USDT",
"description": "Tether",
"decimal": 8,
"can_deposit": true,
"can_withdraw": true,
"balance": "740145525",
"abs_balance": "7.40145525",
"fee_coin": "BTC",
"abs_estimate_fee": "0.00015044",
"confirming_threshold": 3,
"dust_threshold": 1,
"token_address": "31",
"require_memo": false
},
{
"coin": "BTC",
"display_code": "BTC",
"description": "Bitcoin",
"decimal": 8,
"can_deposit": true,
"can_withdraw": true,
"balance": "102730",
"abs_balance": "0.0010273",
"fee_coin": "BTC",
"abs_estimate_fee": "0.00013513",
"confirming_threshold": 3,
"dust_threshold": 546,
"token_address": "",
"require_memo": false
}
]
}
}
Account
Get Account Details
This content applies to WaaS 1.0 only. We highly recommend that you upgrade to WaaS 2.0.
GET
/
v1
/
custody
/
org_info
/
request(
"GET",
"/v1/custody/org_info/",
{},
api_key,
api_secret,
host
)
coboFetch('GET', '/v1/custody/org_info/', {}, api_key, api_secret, host)
.then(res => {
res.json().then((data)=>{
console.log(JSON.stringify(data, null, 4));
})
}).catch(err => {
console.log(err)
});
Request("GET", "/v1/custody/org_info/", map[string]string{})
{
"success": true,
"result": {
"name": "test",
"assets": [
{
"coin": "ETH",
"display_code": "ETH",
"description": "Ethereum",
"decimal": 18,
"can_deposit": true,
"can_withdraw": true,
"balance": "0",
"abs_balance": "0",
"fee_coin": "ETH",
"abs_estimate_fee": "0.0003648",
"confirming_threshold": 12,
"dust_threshold": 1,
"token_address": "",
"require_memo": false
},
{
"coin": "BTC_USDT",
"display_code": "USDT",
"description": "Tether",
"decimal": 8,
"can_deposit": true,
"can_withdraw": true,
"balance": "740145525",
"abs_balance": "7.40145525",
"fee_coin": "BTC",
"abs_estimate_fee": "0.00015044",
"confirming_threshold": 3,
"dust_threshold": 1,
"token_address": "31",
"require_memo": false
},
{
"coin": "BTC",
"display_code": "BTC",
"description": "Bitcoin",
"decimal": 8,
"can_deposit": true,
"can_withdraw": true,
"balance": "102730",
"abs_balance": "0.0010273",
"fee_coin": "BTC",
"abs_estimate_fee": "0.00013513",
"confirming_threshold": 3,
"dust_threshold": 546,
"token_address": "",
"require_memo": false
}
]
}
}
Request
NoneResponse
bool
request successful or failed
object
Show object
Show object
String
org name
object[]
Show object
Show object
String
The coin symbol.
String
Coin ticker symbol (not unique, changeable, for reference only)
String
Full name of coin (not unique, changeable, for reference only)
String
Coin balance decimal places
Boolean
Deposit accessibility
Boolean
Withdraw accessibility
String
Current balance
String
Absolute value of balance
String
Coin used for fee
String
Estimated fee
String
Estimated fee usd
Int
Confirmation threshold required for the coin
Int
Coin minimum withdraw threshold
String
Coin minimum withdraw threshold
String
Smart contract address for token (null for main-chain token)
String
Memo for specified coins(EOS,XLM,XRP,IOST
request(
"GET",
"/v1/custody/org_info/",
{},
api_key,
api_secret,
host
)
coboFetch('GET', '/v1/custody/org_info/', {}, api_key, api_secret, host)
.then(res => {
res.json().then((data)=>{
console.log(JSON.stringify(data, null, 4));
})
}).catch(err => {
console.log(err)
});
Request("GET", "/v1/custody/org_info/", map[string]string{})
{
"success": true,
"result": {
"name": "test",
"assets": [
{
"coin": "ETH",
"display_code": "ETH",
"description": "Ethereum",
"decimal": 18,
"can_deposit": true,
"can_withdraw": true,
"balance": "0",
"abs_balance": "0",
"fee_coin": "ETH",
"abs_estimate_fee": "0.0003648",
"confirming_threshold": 12,
"dust_threshold": 1,
"token_address": "",
"require_memo": false
},
{
"coin": "BTC_USDT",
"display_code": "USDT",
"description": "Tether",
"decimal": 8,
"can_deposit": true,
"can_withdraw": true,
"balance": "740145525",
"abs_balance": "7.40145525",
"fee_coin": "BTC",
"abs_estimate_fee": "0.00015044",
"confirming_threshold": 3,
"dust_threshold": 1,
"token_address": "31",
"require_memo": false
},
{
"coin": "BTC",
"display_code": "BTC",
"description": "Bitcoin",
"decimal": 8,
"can_deposit": true,
"can_withdraw": true,
"balance": "102730",
"abs_balance": "0.0010273",
"fee_coin": "BTC",
"abs_estimate_fee": "0.00013513",
"confirming_threshold": 3,
"dust_threshold": 546,
"token_address": "",
"require_memo": false
}
]
}
}
⌘I
