CCXT
coinone

coinone implicit API

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

Every endpoint in coinone'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. publicGetOrderbook); the snake_case alias (public_get_orderbook) also works in JavaScript, Python and PHP, and Go uses the PascalCase form (PublicGetOrderbook). Switch tabs for the call in each language:

const coinone = new ccxt.coinone ();
const response = await coinone.publicGetOrderbook (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 coinone API documentation: doc.coinone.co.kr

63 implicit endpoints across 5 access groups.

public

MethodHTTPEndpointCost
publicGetOrderbookGETorderbook
publicGetTickerGETticker
publicGetTickerUtcGETticker_utc
publicGetTradesGETtrades

v2Public

Base URL: https://api.coinone.co.kr/public/v2

MethodHTTPEndpointCost
v2PublicGetRangeUnitsGETrange_units
v2PublicGetMarketsQuoteCurrencyGETmarkets/{quote_currency}
v2PublicGetMarketsQuoteCurrencyTargetCurrencyGETmarkets/{quote_currency}/{target_currency}
v2PublicGetOrderbookQuoteCurrencyTargetCurrencyGETorderbook/{quote_currency}/{target_currency}
v2PublicGetTradesQuoteCurrencyTargetCurrencyGETtrades/{quote_currency}/{target_currency}
v2PublicGetTickerNewQuoteCurrencyGETticker_new/{quote_currency}
v2PublicGetTickerNewQuoteCurrencyTargetCurrencyGETticker_new/{quote_currency}/{target_currency}
v2PublicGetTickerUtcNewQuoteCurrencyGETticker_utc_new/{quote_currency}
v2PublicGetTickerUtcNewQuoteCurrencyTargetCurrencyGETticker_utc_new/{quote_currency}/{target_currency}
v2PublicGetCurrenciesGETcurrencies
v2PublicGetCurrenciesCurrencyGETcurrencies/{currency}
v2PublicGetChartQuoteCurrencyTargetCurrencyGETchart/{quote_currency}/{target_currency}

private

MethodHTTPEndpointCost
privatePostAccountDepositAddressPOSTaccount/deposit_address
privatePostAccountBtcDepositAddressPOSTaccount/btc_deposit_address
privatePostAccountBalancePOSTaccount/balance
privatePostAccountDailyBalancePOSTaccount/daily_balance
privatePostAccountUserInfoPOSTaccount/user_info
privatePostAccountVirtualAccountPOSTaccount/virtual_account
privatePostOrderCancelAllPOSTorder/cancel_all
privatePostOrderCancelPOSTorder/cancel
privatePostOrderLimitBuyPOSTorder/limit_buy
privatePostOrderLimitSellPOSTorder/limit_sell
privatePostOrderCompleteOrdersPOSTorder/complete_orders
privatePostOrderLimitOrdersPOSTorder/limit_orders
privatePostOrderOrderInfoPOSTorder/order_info
privatePostTransactionAuthNumberPOSTtransaction/auth_number
privatePostTransactionHistoryPOSTtransaction/history
privatePostTransactionKrwHistoryPOSTtransaction/krw/history
privatePostTransactionBtcPOSTtransaction/btc
privatePostTransactionCoinPOSTtransaction/coin

v2Private

Base URL: https://api.coinone.co.kr/v2

MethodHTTPEndpointCost
v2PrivatePostAccountBalancePOSTaccount/balance
v2PrivatePostAccountDepositAddressPOSTaccount/deposit_address
v2PrivatePostAccountUserInfoPOSTaccount/user_info
v2PrivatePostAccountVirtualAccountPOSTaccount/virtual_account
v2PrivatePostOrderCancelPOSTorder/cancel
v2PrivatePostOrderLimitBuyPOSTorder/limit_buy
v2PrivatePostOrderLimitSellPOSTorder/limit_sell
v2PrivatePostOrderLimitOrdersPOSTorder/limit_orders
v2PrivatePostOrderCompleteOrdersPOSTorder/complete_orders
v2PrivatePostOrderQueryOrderPOSTorder/query_order
v2PrivatePostTransactionAuthNumberPOSTtransaction/auth_number
v2PrivatePostTransactionBtcPOSTtransaction/btc
v2PrivatePostTransactionHistoryPOSTtransaction/history
v2PrivatePostTransactionKrwHistoryPOSTtransaction/krw/history

v2_1Private

Base URL: https://api.coinone.co.kr/v2.1

MethodHTTPEndpointCost
v2_1PrivatePostAccountBalanceAllPOSTaccount/balance/all
v2_1PrivatePostAccountBalancePOSTaccount/balance
v2_1PrivatePostAccountTradeFeePOSTaccount/trade_fee
v2_1PrivatePostAccountTradeFeeQuoteCurrencyTargetCurrencyPOSTaccount/trade_fee/{quote_currency}/{target_currency}
v2_1PrivatePostOrderLimitPOSTorder/limit
v2_1PrivatePostOrderCancelPOSTorder/cancel
v2_1PrivatePostOrderCancelAllPOSTorder/cancel/all
v2_1PrivatePostOrderOpenOrdersPOSTorder/open_orders
v2_1PrivatePostOrderOpenOrdersAllPOSTorder/open_orders/all
v2_1PrivatePostOrderCompleteOrdersPOSTorder/complete_orders
v2_1PrivatePostOrderCompleteOrdersAllPOSTorder/complete_orders/all
v2_1PrivatePostOrderInfoPOSTorder/info
v2_1PrivatePostTransactionKrwHistoryPOSTtransaction/krw/history
v2_1PrivatePostTransactionCoinHistoryPOSTtransaction/coin/history
v2_1PrivatePostTransactionCoinWithdrawalLimitPOSTtransaction/coin/withdrawal/limit

On this page