Get Coin Info
This end point will return full list of coins if cactus_symbol is not provided.
Request
GET https://custody-example-url/custody/v1/api/coin-infos
Parameters
| Field | Type | Description |
|---|---|---|
cactus_symbol Optional |
String | Cacutus token name Allowed Value: Refer to Cactus Symbol (For API) column in Supported Token |
symbol Optional |
String | Common token nbame Allowed Value: Refer to Symbol (For API) column in Supported Token |
Response
| Field | Type | Description |
|---|---|---|
| code | Integer | Response code |
| message | String | Response message |
| successful | Boolean | If the request is successful |
| data | Object | Wallet object list |
| -cactus_symbol | String | Cactus coin symbol |
| -symbol | String | Common symbol |
| -chain | String | Chain name |
| -cactus_chain | String | cactus chain |
| -decimals | String | Decimals |
| -contract_address | String | contract address |
| - deposit_block_number | String | deposit height |
| - confirm_block_number | String | Deposit security height |
Response Example
{
"code": 0,
"message": "",
"data": [
{
"cactus_symbol": "USDTERC",
"symbol": "USDTERC",
"chain": "Ethereum",
"cactus_chain": "ETH",
"decimals": "6",
"contract_address": "0xa3b3e16cfe7bb04ad379af63de9ec1d1bc723c11",
"deposit_block_number": "1",
"confirm_block_number": "12"
}
],
"successful": true
}