Back to Ccxt

Coincheck

wiki/exchanges-implicit/coincheck.md

4.5.644.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# 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:

<!-- 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/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}