Skip to main content
GET
https://api.dev.cobo.com
/
v1
/
custody
/
trading_deposit_info
request(
    "GET",
    "/v1/custody/trading_deposit_info/",
    {
        "request_id": "UNIQUE_ID_FOR_DEPOSIT"
    },
    api_key, api_secret, host
)

Request

request_id
String
required
Request ID (Universally unique ID for each request)

Response

request_id
String
Request ID (Universally unique ID for each request)
coin
String
Coin code
amount
Int
Int amount contains decimals (e.g. if 1 BTC is to be deposited, the amount should be multiplied by 100,000,000 (Satoshis))
abs_amount
String
Absolute amount. If you trade 1.5 BTC, then the abs_amount is 1.5
status
String
Status: ok, pending, failed, human_check
fee
Int
Fee amount (Note that the value here contains decimals. For example, a BTC value of 100,000,000 here is actually 1 BTC)
abs_fee
String
Absolute fee value. For examle, abs_cobo_fee 0.00005 means exactly 0.00005BTC
request(
    "GET",
    "/v1/custody/trading_deposit_info/",
    {
        "request_id": "UNIQUE_ID_FOR_DEPOSIT"
    },
    api_key, api_secret, host
)