CCXT
coincheck

coincheck implicit API

Every raw coincheck endpoint exposed as a CCXT implicit method — names, HTTP verbs, paths and rate-limit costs.

Every endpoint in coincheck's api definition is exposed as an implicit method — a thin, generated wrapper around the raw exchange endpoint. Use these for exchange-specific functionality the CCXT API does not cover.

These methods are available in every CCXT language — TypeScript, JavaScript, Python, PHP, C# and Go. Call them by the camelCase name shown in the tables below (e.g. publicGetExchangeOrdersRate); the snake_case alias (public_get_exchange_orders_rate) also works in JavaScript, Python and PHP, and Go uses the PascalCase form (PublicGetExchangeOrdersRate). Switch tabs for the call in each language:

const coincheck = new ccxt.coincheck ();
const response = await coincheck.publicGetExchangeOrdersRate (params);

Path parameters wrapped in {} (e.g. {pair}) are substituted from params; everything else in params is sent as the query string or request body. Cost is the rate-limiter weight of each call.

📚 Official coincheck API documentation: coincheck.com

32 implicit endpoints across 2 access groups.

public

MethodHTTPEndpointCost
publicGetExchangeOrdersRateGETexchange/orders/rate
publicGetExchangeStatusGETexchange_status
publicGetOrderBooksGETorder_books
publicGetRatePairGETrate/{pair}
publicGetTickerGETticker
publicGetTradesGETtrades

private

MethodHTTPEndpointCost
privateGetAccountsGETaccounts
privateGetAccountsBalanceGETaccounts/balance
privateGetAccountsLeverageBalanceGETaccounts/leverage_balance
privateGetBankAccountsGETbank_accounts
privateGetDepositMoneyGETdeposit_money
privateGetExchangeOrdersIdGETexchange/orders/{id}
privateGetExchangeOrdersOpensGETexchange/orders/opens
privateGetExchangeOrdersCancelStatusGETexchange/orders/cancel_status
privateGetExchangeOrdersTransactionsGETexchange/orders/transactions
privateGetExchangeOrdersTransactionsPaginationGETexchange/orders/transactions_pagination
privateGetExchangeLeveragePositionsGETexchange/leverage/positions
privateGetLendingBorrowsMatchesGETlending/borrows/matches
privateGetSendMoneyGETsend_money
privateGetWithdrawsGETwithdraws
privatePostBankAccountsPOSTbank_accounts
privatePostDepositMoneyIdFastPOSTdeposit_money/{id}/fast
privatePostExchangeOrdersPOSTexchange/orders
privatePostExchangeTransfersToLeveragePOSTexchange/transfers/to_leverage
privatePostExchangeTransfersFromLeveragePOSTexchange/transfers/from_leverage
privatePostLendingBorrowsPOSTlending/borrows
privatePostLendingBorrowsIdRepayPOSTlending/borrows/{id}/repay
privatePostSendMoneyPOSTsend_money
privatePostWithdrawsPOSTwithdraws
privateDeleteBankAccountsIdDELETEbank_accounts/{id}
privateDeleteExchangeOrdersIdDELETEexchange/orders/{id}
privateDeleteWithdrawsIdDELETEwithdraws/{id}

On this page