Back to Ccxt

Coinone

wiki/exchanges-implicit/coinone.md

4.5.736.8 KB
Original Source

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

<!-- tabs:start -->

JavaScript

javascript
const coinone = new ccxt.coinone ();
const response = await coinone.publicGetOrderbook (params);

TypeScript

typescript
import ccxt from 'ccxt';
const coinone = new ccxt.coinone ();
const response = await coinone.publicGetOrderbook (params);

Python

python
import ccxt
coinone = ccxt.coinone()
response = coinone.public_get_orderbook(params)

PHP

php
$coinone = new \ccxt\coinone();
$response = $coinone->public_get_orderbook($params);

C#

csharp
using ccxt;
var coinone = new Coinone();
var response = await coinone.publicGetOrderbook(parameters);

Go

go
coinone := ccxt.NewCoinone(nil)
response := <-coinone.PublicGetOrderbook(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 coinone API documentation: doc.coinone.co.kr

63 implicit endpoints across 5 access groups.

public

MethodHTTPEndpointCost
publicGetOrderbookGETorderbook1
publicGetTickerGETticker1
publicGetTickerUtcGETticker_utc1
publicGetTradesGETtrades1

v2Public

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

MethodHTTPEndpointCost
v2PublicGetRangeUnitsGETrange_units1
v2PublicGetMarketsQuoteCurrencyGETmarkets/{quote_currency}1
v2PublicGetMarketsQuoteCurrencyTargetCurrencyGETmarkets/{quote_currency}/{target_currency}1
v2PublicGetOrderbookQuoteCurrencyTargetCurrencyGETorderbook/{quote_currency}/{target_currency}1
v2PublicGetTradesQuoteCurrencyTargetCurrencyGETtrades/{quote_currency}/{target_currency}1
v2PublicGetTickerNewQuoteCurrencyGETticker_new/{quote_currency}1
v2PublicGetTickerNewQuoteCurrencyTargetCurrencyGETticker_new/{quote_currency}/{target_currency}1
v2PublicGetTickerUtcNewQuoteCurrencyGETticker_utc_new/{quote_currency}1
v2PublicGetTickerUtcNewQuoteCurrencyTargetCurrencyGETticker_utc_new/{quote_currency}/{target_currency}1
v2PublicGetCurrenciesGETcurrencies1
v2PublicGetCurrenciesCurrencyGETcurrencies/{currency}1
v2PublicGetChartQuoteCurrencyTargetCurrencyGETchart/{quote_currency}/{target_currency}1

private

MethodHTTPEndpointCost
privatePostAccountDepositAddressPOSTaccount/deposit_address1
privatePostAccountBtcDepositAddressPOSTaccount/btc_deposit_address1
privatePostAccountBalancePOSTaccount/balance1
privatePostAccountDailyBalancePOSTaccount/daily_balance1
privatePostAccountUserInfoPOSTaccount/user_info1
privatePostAccountVirtualAccountPOSTaccount/virtual_account1
privatePostOrderCancelAllPOSTorder/cancel_all1
privatePostOrderCancelPOSTorder/cancel1
privatePostOrderLimitBuyPOSTorder/limit_buy1
privatePostOrderLimitSellPOSTorder/limit_sell1
privatePostOrderCompleteOrdersPOSTorder/complete_orders1
privatePostOrderLimitOrdersPOSTorder/limit_orders1
privatePostOrderOrderInfoPOSTorder/order_info1
privatePostTransactionAuthNumberPOSTtransaction/auth_number1
privatePostTransactionHistoryPOSTtransaction/history1
privatePostTransactionKrwHistoryPOSTtransaction/krw/history1
privatePostTransactionBtcPOSTtransaction/btc1
privatePostTransactionCoinPOSTtransaction/coin1

v2Private

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

MethodHTTPEndpointCost
v2PrivatePostAccountBalancePOSTaccount/balance1
v2PrivatePostAccountDepositAddressPOSTaccount/deposit_address1
v2PrivatePostAccountUserInfoPOSTaccount/user_info1
v2PrivatePostAccountVirtualAccountPOSTaccount/virtual_account1
v2PrivatePostOrderCancelPOSTorder/cancel1
v2PrivatePostOrderLimitBuyPOSTorder/limit_buy1
v2PrivatePostOrderLimitSellPOSTorder/limit_sell1
v2PrivatePostOrderLimitOrdersPOSTorder/limit_orders1
v2PrivatePostOrderCompleteOrdersPOSTorder/complete_orders1
v2PrivatePostOrderQueryOrderPOSTorder/query_order1
v2PrivatePostTransactionAuthNumberPOSTtransaction/auth_number1
v2PrivatePostTransactionBtcPOSTtransaction/btc1
v2PrivatePostTransactionHistoryPOSTtransaction/history1
v2PrivatePostTransactionKrwHistoryPOSTtransaction/krw/history1

v2_1Private

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

MethodHTTPEndpointCost
v2_1PrivatePostAccountBalanceAllPOSTaccount/balance/all1
v2_1PrivatePostAccountBalancePOSTaccount/balance1
v2_1PrivatePostAccountTradeFeePOSTaccount/trade_fee1
v2_1PrivatePostAccountTradeFeeQuoteCurrencyTargetCurrencyPOSTaccount/trade_fee/{quote_currency}/{target_currency}1
v2_1PrivatePostOrderLimitPOSTorder/limit1
v2_1PrivatePostOrderCancelPOSTorder/cancel1
v2_1PrivatePostOrderCancelAllPOSTorder/cancel/all1
v2_1PrivatePostOrderOpenOrdersPOSTorder/open_orders1
v2_1PrivatePostOrderOpenOrdersAllPOSTorder/open_orders/all1
v2_1PrivatePostOrderCompleteOrdersPOSTorder/complete_orders1
v2_1PrivatePostOrderCompleteOrdersAllPOSTorder/complete_orders/all1
v2_1PrivatePostOrderInfoPOSTorder/info1
v2_1PrivatePostTransactionKrwHistoryPOSTtransaction/krw/history1
v2_1PrivatePostTransactionCoinHistoryPOSTtransaction/coin/history1
v2_1PrivatePostTransactionCoinWithdrawalLimitPOSTtransaction/coin/withdrawal/limit1