Account
Get Account Details
This endpoint returns a JSON response with detailed information about the organization associated with the authenticated user's custody wallet.
GET
/v1/custody/org_info/
API-SECRET*
Request
None
Response
success
bool
request successful or failed
result
object
request(
"GET",
"/v1/custody/org_info/",
{},
api_key,
api_secret,
host
)
{
"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(
"GET",
"/v1/custody/org_info/",
{},
api_key,
api_secret,
host
)
{
"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
}
]
}
}