Back to Ccxt

Coincheck

wiki/exchanges-implicit/coincheck.md

4.5.734.1 KB
Original Source

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#, Go and Java. 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:

<!-- tabs:start -->

JavaScript

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

TypeScript

typescript
import ccxt from 'ccxt';
const coincheck = new ccxt.coincheck ();
const response = await coincheck.publicGetExchangeOrdersRate (params);

Python

python
import ccxt
coincheck = ccxt.coincheck()
response = coincheck.public_get_exchange_orders_rate(params)

PHP

php
$coincheck = new \ccxt\coincheck();
$response = $coincheck->public_get_exchange_orders_rate($params);

C#

csharp
using ccxt;
var coincheck = new Coincheck();
var response = await coincheck.publicGetExchangeOrdersRate(parameters);

Go

go
coincheck := ccxt.NewCoincheck(nil)
response := <-coincheck.PublicGetExchangeOrdersRate(params)
<!-- tabs:end -->

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/rate1
publicGetExchangeStatusGETexchange_status1
publicGetOrderBooksGETorder_books1
publicGetRatePairGETrate/{pair}1
publicGetTickerGETticker1
publicGetTradesGETtrades1

private

MethodHTTPEndpointCost
privateGetAccountsGETaccounts1
privateGetAccountsBalanceGETaccounts/balance1
privateGetAccountsLeverageBalanceGETaccounts/leverage_balance1
privateGetBankAccountsGETbank_accounts1
privateGetDepositMoneyGETdeposit_money1
privateGetExchangeOrdersIdGETexchange/orders/{id}1
privateGetExchangeOrdersOpensGETexchange/orders/opens1
privateGetExchangeOrdersCancelStatusGETexchange/orders/cancel_status1
privateGetExchangeOrdersTransactionsGETexchange/orders/transactions1
privateGetExchangeOrdersTransactionsPaginationGETexchange/orders/transactions_pagination1
privateGetExchangeLeveragePositionsGETexchange/leverage/positions1
privateGetLendingBorrowsMatchesGETlending/borrows/matches1
privateGetSendMoneyGETsend_money1
privateGetWithdrawsGETwithdraws1
privatePostBankAccountsPOSTbank_accounts1
privatePostDepositMoneyIdFastPOSTdeposit_money/{id}/fast1
privatePostExchangeOrdersPOSTexchange/orders1
privatePostExchangeTransfersToLeveragePOSTexchange/transfers/to_leverage1
privatePostExchangeTransfersFromLeveragePOSTexchange/transfers/from_leverage1
privatePostLendingBorrowsPOSTlending/borrows1
privatePostLendingBorrowsIdRepayPOSTlending/borrows/{id}/repay1
privatePostSendMoneyPOSTsend_money1
privatePostWithdrawsPOSTwithdraws1
privateDeleteBankAccountsIdDELETEbank_accounts/{id}1
privateDeleteExchangeOrdersIdDELETEexchange/orders/{id}1
privateDeleteWithdrawsIdDELETEwithdraws/{id}1