# GET /v1/withdraw/currencies/{currency}
Returns terms of withdrawal for a given currency.
GET /v1/withdraw/currencies/{currency}
# Curl Example
curl -X GET "https://api.waves.exchange/v1/withdraw/currencies/BTC" -H "Accept: application/json"
# Request Parameters
Field name | Description |
---|---|
currency | Ticker of the currency on Waves.Exchange. To get tickers for all currencies use the GET /v1/withdraw/currencies method |
# Response JSON example
{
"type": "withdrawal_currency",
"id": "BTC",
"waves_asset_id": "8LQW8f7P5d5PZM7GtZEBgaqRPGSzS3DfPuiXrURJ4AJS",
"decimals": 8,
"status": "active",
"allowed_amount": {
"min": 0.001,
"max": 100
},
"fees": {
"flat": 0.00003,
"rate": 0
}
}
Response fields are described in Terms of Withdrawal article.