# GET /v1/withdraw/currencies/{currency}
Attention! This method is deprecated. It is recommended to use GET /v1/withdraw/currencies/{currency}/{platform} method instead.
Returns terms of withdrawal for a given currency on its default platform.
GET /v1/withdraw/currencies/{currency}
# Curl Example
curl -X GET "https://api.waves.exchange/v1/withdraw/currencies/ETH" -H "Accept: application/json"
# Request Parameters
Field name | Description |
---|---|
currency | Ticker of the currency on WX Network. To get tickers for all currencies use the GET /v1/withdraw/currencies method |
# Response JSON example
{
"type": "withdrawal_currency",
"id": "ETH",
"platform_id": "ETH",
"waves_asset_id": "474jTeYx2r2Va35794tCScAXWJG9hU2HcgxzMowaZUnu",
"platform_asset_id": "ETH",
"decimals": 8,
"status": "active",
"allowed_amount": {
"min": 0.01,
"max": 300.0
},
"fees": {
"flat": 0.02,
"rate": 0.0
}
}
Response fields are described in Terms of Withdrawal article.