Get asset data
REQUEST wss://ws-mdpro.bitvavo.com/v2 getAssets
Returns the information about the specified assets.
Rate limit weight points: 1
Request
- Schema
- Example (body)
Body
Set value to getAssets.
getAssetsYour identifier for the request.
1The asset for which to return the information. If not specified, all supported assets are returned.
BTC{
"action": "getAssets",
"requestId": 1,
"symbol": "BTC"
}
Response
- Schema
- Example (body)
Schema
- Array [
- ]
The action performed.
getAssetsYour identifier for the request.
1response object
The asset for which the information is returned.
BTCThe full name of the asset.
BitcoinThe number of decimal digits for this asset.
8The fee for depositing the asset.
0The minimum number of network confirmations to credit the asset to your account.
10The status of the asset being deposited.
Possible values: [OK, MAINTENANCE, DELISTED]
The fee for withdrawing the asset.
0.2The minimum amount that can be withdrawn.
0.2The status of the asset being withdrawn.
Possible values: [OK, MAINTENANCE, DELISTED]
The list of supported networks.
["Mainnet"]The reason if the withdrawalStatus or depositStatus is not OK.
[
{
"action": "getAssets",
"requestId": 1,
"response": {
"symbol": "BTC",
"name": "Bitcoin",
"decimals": 8,
"depositFee": "0",
"depositConfirmations": 10,
"depositStatus": "OK",
"withdrawalFee": "0.2",
"withdrawalMinAmount": "0.2",
"withdrawalStatus": "OK",
"networks": [
"Mainnet"
],
"message": ""
}
}
]