List Assets
GET/v1/wallet/assets
List assets available for deposit or withdrawal.
Requires authentication.
Request
Query Parameters
An optional grouping of similar assets.
This filter act as a database "like", returning all assets whose name matches partially with this filter.
Network identification.
If it is enabled to generate address on this network.
If it is enabled to receive deposits on this network.
If it is enabled to make withdrawals on this network.
Possible values: non-empty
and <= 200 characters
, >= 1
and <= 200
Default value: 20
Max number of objects to be returned as result of request.
A reference to the server indicating the next set of objects to be returned. It is sent back in every response were the number of objects returned is bigger than the limit.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
- Successfull return listing USDT
Schema
- Array [
- Array [
- ]
- ]
result object[]
Asset identification.
Asset full name.
An optional grouping of similar assets.
networks object[]
List of distinct networks where this asset is placed.
Network identification.
Minimum number of blocks added to the blockchain along with your transaction.
'memo' or 'destination_tag' used in some networks.
If is enabled to generate address on this network.
If it is enabled to receive deposits on this network.
If it is enabled to make withdrawals on this network.
Minimum USD amount to make a withdrawal.
Maximum USD amount permited to withdrawal for each 'withdrawal_max_interval'.
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": "USD 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
}
]
}
]
}