CCXT
exmo

exmo implicit API

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

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

const exmo = new ccxt.exmo ();
const response = await exmo.webGetCtrlFeesAndLimits (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 exmo API documentation: exmo.me

51 implicit endpoints across 3 access groups.

web

Base URL: https://exmo.me

MethodHTTPEndpointCost
webGetCtrlFeesAndLimitsGETctrl/feesAndLimits
webGetEnDocsFeesGETen/docs/fees

public

Base URL: https://api.exmo.com

MethodHTTPEndpointCost
publicGetCurrencyGETcurrency
publicGetCurrencyListExtendedGETcurrency/list/extended
publicGetOrderBookGETorder_book
publicGetPairSettingsGETpair_settings
publicGetTickerGETticker
publicGetTradesGETtrades
publicGetCandlesHistoryGETcandles_history
publicGetRequiredAmountGETrequired_amount
publicGetPaymentsProvidersCryptoListGETpayments/providers/crypto/list

private

Base URL: https://api.exmo.com

MethodHTTPEndpointCost
privatePostUserInfoPOSTuser_info
privatePostOrderCreatePOSTorder_create
privatePostOrderCancelPOSTorder_cancel
privatePostStopMarketOrderCreatePOSTstop_market_order_create
privatePostStopMarketOrderCancelPOSTstop_market_order_cancel
privatePostUserOpenOrdersPOSTuser_open_orders
privatePostUserTradesPOSTuser_trades
privatePostUserCancelledOrdersPOSTuser_cancelled_orders
privatePostOrderTradesPOSTorder_trades
privatePostDepositAddressPOSTdeposit_address
privatePostWithdrawCryptPOSTwithdraw_crypt
privatePostWithdrawGetTxidPOSTwithdraw_get_txid
privatePostExcodeCreatePOSTexcode_create
privatePostExcodeLoadPOSTexcode_load
privatePostCodeCheckPOSTcode_check
privatePostWalletHistoryPOSTwallet_history
privatePostWalletOperationsPOSTwallet_operations
privatePostMarginUserOrderCreatePOSTmargin/user/order/create
privatePostMarginUserOrderUpdatePOSTmargin/user/order/update
privatePostMarginUserOrderCancelPOSTmargin/user/order/cancel
privatePostMarginUserPositionClosePOSTmargin/user/position/close
privatePostMarginUserPositionMarginAddPOSTmargin/user/position/margin_add
privatePostMarginUserPositionMarginRemovePOSTmargin/user/position/margin_remove
privatePostMarginCurrencyListPOSTmargin/currency/list
privatePostMarginPairListPOSTmargin/pair/list
privatePostMarginSettingsPOSTmargin/settings
privatePostMarginFundingListPOSTmargin/funding/list
privatePostMarginUserInfoPOSTmargin/user/info
privatePostMarginUserOrderListPOSTmargin/user/order/list
privatePostMarginUserOrderHistoryPOSTmargin/user/order/history
privatePostMarginUserOrderTradesPOSTmargin/user/order/trades
privatePostMarginUserOrderMaxQuantityPOSTmargin/user/order/max_quantity
privatePostMarginUserPositionListPOSTmargin/user/position/list
privatePostMarginUserPositionMarginRemoveInfoPOSTmargin/user/position/margin_remove_info
privatePostMarginUserPositionMarginAddInfoPOSTmargin/user/position/margin_add_info
privatePostMarginUserWalletListPOSTmargin/user/wallet/list
privatePostMarginUserWalletHistoryPOSTmargin/user/wallet/history
privatePostMarginUserTradeListPOSTmargin/user/trade/list
privatePostMarginTradesPOSTmargin/trades
privatePostMarginLiquidationFeedPOSTmargin/liquidation/feed

On this page