# GET /v1/withdraw/currencies
Returns a list of currencies that are available to withdraw as well as terms of withdrawal for each currency.
GET /v1/withdraw/currencies?limit={limit}&offset={offset}
# Request Parameters
Field name | Description |
---|---|
limit | Number of returned objects (page size). |
offset | Number of objects that should be skipped when getting. |
# Response JSON Example
{
"type": "list",
"page_info": {
"has_next_page": false
},
"items": [
{
"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
}
}
]
}
# Response Parameters
Field name | Description |
---|---|
page_info.has_next_page | true if next page exists |
items | List of currencies. Fields of each item are described in Terms of Withdrawal article |