# GET /v1/deposit/currencies/{currency}/{platform}
Returns terms of deposit for a given currency and platform.
GET /v1/deposit/currencies/{currency}/{platform}
# Curl Example
curl -X GET "https://api.waves.exchange/v1/deposit/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/deposit/currencies][/en/api/gateways/deposit/currencies] method |
platform | Platform id. To get the list of the platforms use the GET /v1/platforms method |
# Response JSON example
{
"type": "deposit_currency",
"id": "USDN",
"platform_id": "BSC",
"waves_asset_id": "474jTeYx2r2Va35794tCScAXWJG9hU2HcgxzMowaZUnu",
"waves_asset_id": "DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p",
"platform_asset_id": "0xe07910a06a086c83ba41827aa00b26ed5e20065b",
"decimals": 18,
"status": "active",
"allowed_amount": {
"min": 0.01,
"max": 50000.0
"min": 1.0,
"max": 30000000.0
},
"fees": {
"flat": 0.0,
"rate": 0.0
}
}
Response fields are described in Terms of Deposit article.