# GET /v1/deposit/addresses/{currency}/{platform}
Returns external blockchain addresses for deposit that corresponds to user's Waves account, as well as terms of deposit for a given currency and platform.
This method requires access token. Read more about Access Token.
GET /v1/deposit/addresses/{currency}/{platform}
Authorization: Bearer {access_token}
# 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 method |
platform | Platform id. To get the list of the platforms use the GET /v1/platforms method |
access_token | Token that represents user's permission to access data |
# Curl Example
curl -X GET "https://api.waves.exchange/v1/deposit/addresses/USDN/BSC" -H "Accept: application/json" -H "Authorization: Bearer 0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f"
# Response JSON Example
{
"type": "deposit_addresses",
"currency": {
"type": "deposit_currency",
"id": "USDN",
"platform_id": "BSC",
"waves_asset_id": "DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p",
"platform_asset_id": "0xe07910a06a086c83ba41827aa00b26ed5e20065b",
"decimals": 18,
"status": "active",
"allowed_amount": {
"min": 1.0,
"max": 30000000.0
},
"fees": {
"flat": 0.0,
"rate": 0.0
}
},
"deposit_addresses": [
"0x3f2b1c25A5f23b193560B97988ee98cBDb480730"
]
}
# Response parameters
Field name | Description |
---|---|
currency | Terms of deposit for the currency. Fields are described in Terms of Deposit article |
deposit_addresses | Address (or two addresses) on external blockchain to transfer cryptocurrency and then receive the transfer to Waves account |