# GET /v1/withdraw/addresses/{currency}/{address}
Returns Waves address for withdrawal that corresponds to specified address on external blockchain, as well as terms of withdrawal for a given currency.
This method requires access token. For more information about the token see the Access Token article.
GET /v1/withdraw/addresses/{currency}/{address}
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/withdraw/currencies method |
address | Address on external blockchain for withdrawal |
access_token | Token that represents user's permission to access data |
# Curl Example
curl -X GET "https://api.waves.exchange/v1/withdraw/addresses/BTC/bc1q4xz2vygklgrn6rwlpc89l4dyhj2j4lr4rztxfr" -H "Accept: application/json" -H "Authorization: Bearer 0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f"
# Response JSON Example
{
"type": "withdrawal_addresses",
"currency": {
"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
}
},
"proxy_addresses": [
"3P8pGyzZL9..."
]
}
# Response parameters
Field name | Description |
---|---|
currency | Terms of withdrawal for the currency. Fields are described in Terms of Withdrawal article |
proxy_addresses | Waves address to transfer cryptocurrency and then receive the transfer to user's address on external blockchain |