# GET /v1/withdraw/currencies/{currency}/{platform}
Returns terms of withdrawal for a given currency and platform.
GET /v1/withdraw/currencies/{currency}/{platform}
# Curl Example
curl -X GET "https://api.waves.exchange/v1/withdraw/currencies/USDN/BSC" -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 |
platform | Platform id. To get the list of the platforms use the GET /v1/platforms method |
# Response JSON example
{
"type": "withdrawal_currency",
"id": "USDN",
"platform_id": "BSC",
"waves_asset_id": "DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p",
"platform_asset_id": "0xe07910a06a086c83ba41827aa00b26ed5e20065b",
"decimals": 6,
"status": "active",
"allowed_amount": {
"min": 1.0,
"max": 1000000.0
},
"fees": {
"flat": 15.0,
"rate": 0.0
}
}
Response fields are described in Terms of Withdrawal article.