Get Asset
GET/v1/wallet/assets/:asset_id
Get asset data by asset ID.
Requires authentication.
Request
Path Parameters
asset_id stringrequired
Asset ID.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
- Returning a USDT data.
Schema
- Array [
- ]
result object
id string
Asset identification.
name string
Asset full name.
asset_group string
An optional grouping of similar assets.
networks object[]
List of distinct networks where this asset is placed.
name string
Network identification.
min_confirmations integer
Minimum number of blocks added to the blockchain along with your transaction.
blockchain_tag_name string
'memo' or 'destination_tag' used in some networks.
address_enabled boolean
If is enabled to generate address on this network.
deposit_enabled boolean
If it is enabled to receive deposits on this network.
withdrawal_enabled boolean
If it is enabled to make withdrawals on this network.
withdrawal_min_usd string
Minimum USD amount to make a withdrawal.
withdrawal_max_usd string
Maximum USD amount permited to withdrawal for each 'withdrawal_max_interval'.
withdrawal_max_interval integer
Interval time to wait to be able to make a new withdrawal after reaching the value defined at 'withdrawal_max_usd', in hours.
{
"result": {
"id": "USDT",
"name": "USD Theter",
"asset_group": "USD",
"networks": [
{
"name": "Ethereum",
"min_confirmations": 4,
"blockchain_tag_name": "567472829",
"address_enabled": true,
"deposit_enabled": true,
"withdrawal_enabled": true,
"withdrawal_min_usd": "10.0",
"withdrawal_max_usd": "100000.0",
"withdrawal_max_interval": 24
}
]
}
}
{
"result": {
"id": "USDT",
"name": "United States Dollar Theter",
"asset_group": "USD",
"networks": [
{
"name": "Ethereum",
"min_confirmations": 1,
"blockchain_tag_name": null,
"address_enabled": true,
"deposit_enabled": true,
"withdrawal_enabled": true,
"withdrawal_min_usd": "10.0",
"withdrawal_max_usd": "100000.0",
"withdrawal_max_interval": 24
}
]
}
}
Loading...