Get asset data
GET/assets
Returns the information about the specified assets.
This is a public endpoint. However, authenticating your request gives you a higher rate limit.
Rate limit weight points: 1
Request
Query Parameters
The asset for which to return the information. If not specified, all supported assets are returned.
BTCResponses
- 200
- 4XX
The request was successful.
- application/json
- Schema
- Example (body)
Schema
- Array [
- ]
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.
[
{
"symbol": "BTC",
"name": "Bitcoin",
"decimals": 8,
"depositFee": "0",
"depositConfirmations": 10,
"depositStatus": "OK",
"withdrawalFee": "0.2",
"withdrawalMinAmount": "0.2",
"withdrawalStatus": "OK",
"networks": [
"Mainnet"
],
"message": ""
}
]
For error codes, see Handle errors.