CCXT
apex

apex implicit API

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

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

const apex = new ccxt.apex ();
const response = await apex.publicGetV3Symbols (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 apex API documentation: api-docs.omni.apex.exchange

27 implicit endpoints across 2 access groups.

public

Base URL: https://{hostname}/api

MethodHTTPEndpointCost
publicGetV3SymbolsGETv3/symbols1
publicGetV3HistoryFundingGETv3/history-funding1
publicGetV3TickerGETv3/ticker1
publicGetV3KlinesGETv3/klines1
publicGetV3TradesGETv3/trades1
publicGetV3DepthGETv3/depth1
publicGetV3TimeGETv3/time1
publicGetV3DataAllTickerInfoGETv3/data/all-ticker-info1

private

Base URL: https://{hostname}/api

MethodHTTPEndpointCost
privateGetV3AccountGETv3/account1
privateGetV3AccountBalanceGETv3/account-balance1
privateGetV3FillsGETv3/fills1
privateGetV3OrderFillsGETv3/order-fills1
privateGetV3OrderGETv3/order1
privateGetV3HistoryOrdersGETv3/history-orders1
privateGetV3OrderByClientOrderIdGETv3/order-by-client-order-id1
privateGetV3FundingGETv3/funding1
privateGetV3HistoricalPnlGETv3/historical-pnl1
privateGetV3OpenOrdersGETv3/open-orders1
privateGetV3TransfersGETv3/transfers1
privateGetV3TransferGETv3/transfer1
privatePostV3DeleteOpenOrdersPOSTv3/delete-open-orders1
privatePostV3DeleteClientOrderIdPOSTv3/delete-client-order-id1
privatePostV3DeleteOrderPOSTv3/delete-order1
privatePostV3OrderPOSTv3/order1
privatePostV3SetInitialMarginRatePOSTv3/set-initial-margin-rate1
privatePostV3TransferOutPOSTv3/transfer-out1
privatePostV3ContractTransferOutPOSTv3/contract-transfer-out1

On this page