public interface DepositAPI
| 限定符和类型 | 方法和说明 |
|---|---|
DepositAddressResponse |
createDepositAddress(String currency,
String chain)
Create deposit address of currency for deposit.
|
DepositAddressResponse |
getDepositAddress(String currency,
String chain)
Get deposit address of currency for deposit.
|
List<DepositAddressResponse> |
getDepositAddresses(String currency)
Get all deposit addresses for the currency you intend to deposit.
|
Pagination<DepositResponse> |
getDepositPageList(String currency,
long startAt,
long endAt,
String status,
int currentPage,
int pageSize)
Get deposit page list.
|
Pagination<DepositResponse> |
getHistDepositPageList(String currency,
String status,
long startAt,
long endAt,
int currentPage,
int pageSize)
Request via this endpoint to get the V1 historical deposits list on KuCoin.
|
DepositAddressResponse createDepositAddress(String currency, String chain) throws IOException
currency - the code of the currencychain - the chain name of currencyIOExceptionDepositAddressResponse getDepositAddress(String currency, String chain) throws IOException
currency - the code of the currencyIOExceptionPagination<DepositResponse> getDepositPageList(String currency, long startAt, long endAt, String status, int currentPage, int pageSize) throws IOException
currency - CurrencystartAt - Start time. unix timestamp calculated in milliseconds, the creation time queried shall posterior to the start time.endAt - End time. unix timestamp calculated in milliseconds, the creation time queried shall prior to the end time.status - Status. Available value: PROCESSING, SUCCESS, and FAILUREcurrentPage - pageSize - IOExceptionList<DepositAddressResponse> getDepositAddresses(String currency) throws IOException
currency - the code of the currencyIOExceptionPagination<DepositResponse> getHistDepositPageList(String currency, String status, long startAt, long endAt, int currentPage, int pageSize) throws IOException
currency - [Optional] CurrencystartAt - [Optional] Start time. unix timestamp calculated in milliseconds, the creation time queried shall posterior to the start time.endAt - [Optional] End time. unix timestamp calculated in milliseconds, the creation time queried shall prior to the end time.status - [Optional] Status. Available value: PROCESSING, SUCCESS, and FAILUREcurrentPage - pageSize - IOExceptionCopyright © 2023. All rights reserved.