onetrading implicit API
Every raw onetrading endpoint exposed as a CCXT implicit method — names, HTTP verbs, paths and rate-limit costs.
Every endpoint in onetrading'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. publicGetCurrencies); the snake_case alias (public_get_currencies) also works in JavaScript, Python and PHP, and Go uses the PascalCase form (PublicGetCurrencies). Switch tabs for the call in each language:
const onetrading = new ccxt.onetrading ();
const response = await onetrading.publicGetCurrencies (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 onetrading API documentation: docs.onetrading.com
19 implicit endpoints across 2 access groups.
public
Base URL: https://api.onetrading.com/fast
| Method | HTTP | Endpoint | Cost |
|---|---|---|---|
publicGetCurrencies | GET | currencies | |
publicGetCandlesticksInstrumentCode | GET | candlesticks/{instrument_code} | |
publicGetFees | GET | fees | |
publicGetInstruments | GET | instruments | |
publicGetOrderBookInstrumentCode | GET | order-book/{instrument_code} | |
publicGetMarketTicker | GET | market-ticker | |
publicGetMarketTickerInstrumentCode | GET | market-ticker/{instrument_code} | |
publicGetTime | GET | time |
private
Base URL: https://api.onetrading.com/fast
| Method | HTTP | Endpoint | Cost |
|---|---|---|---|
privateGetAccountBalances | GET | account/balances | |
privateGetAccountFees | GET | account/fees | |
privateGetAccountOrders | GET | account/orders | |
privateGetAccountOrdersOrderId | GET | account/orders/{order_id} | |
privateGetAccountOrdersOrderIdTrades | GET | account/orders/{order_id}/trades | |
privateGetAccountTrades | GET | account/trades | |
privateGetAccountTradesTradeId | GET | account/trades/{trade_id} | |
privatePostAccountOrders | POST | account/orders | |
privateDeleteAccountOrders | DELETE | account/orders | |
privateDeleteAccountOrdersOrderId | DELETE | account/orders/{order_id} | |
privateDeleteAccountOrdersClientClientId | DELETE | account/orders/client/{client_id} |