# GET /v1/deposit/addresses/{currency}
Returns address (or two addresses) for deposit on external blockchain that corresponds to user's Waves account, as well as terms of deposit for a given currency.
This method requires access token. Read more about Access Token.
GET /v1/deposit/addresses/{currency}
Authorization: Bearer {access_token}
# Request Parameters
Field name | Description |
---|---|
currency | Ticker of the currency on Waves.Exchange. To get tickers for all currencies use the GET /v1/deposit/currencies method |
access_token | Token that represents user's permission to access data |
# Curl Example
curl -X GET "https://api.waves.exchange/v1/deposit/addresses/BTC" -H "Accept: application/json" -H "Authorization: Bearer 0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f"
# Response JSON Example
{
"type": "deposit_addresses",
"currency": {
"type": "deposit_currency",
"id": "BTC",
"waves_asset_id": "8LQW8f7P5d5PZM7GtZEBgaqRPGSzS3DfPuiXrURJ4AJS",
"decimals": 8,
"status": "active",
"allowed_amount": {
"min": 0.001,
"max": 100
},
"fees": {
"flat": 0.00003,
"rate": 0
}
},
"deposit_addresses": [
"12o09runfo3...",
"0mniqrjkvno..."
]
}
# 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 |