Back to Ccxt

Exmo

wiki/exchanges-implicit/exmo.md

4.5.735.5 KB
Original Source

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

<!-- tabs:start -->

JavaScript

javascript
const exmo = new ccxt.exmo ();
const response = await exmo.webGetCtrlFeesAndLimits (params);

TypeScript

typescript
import ccxt from 'ccxt';
const exmo = new ccxt.exmo ();
const response = await exmo.webGetCtrlFeesAndLimits (params);

Python

python
import ccxt
exmo = ccxt.exmo()
response = exmo.web_get_ctrl_feesandlimits(params)

PHP

php
$exmo = new \ccxt\exmo();
$response = $exmo->web_get_ctrl_feesandlimits($params);

C#

csharp
using ccxt;
var exmo = new Exmo();
var response = await exmo.webGetCtrlFeesAndLimits(parameters);

Go

go
exmo := ccxt.NewExmo(nil)
response := <-exmo.WebGetCtrlFeesAndLimits(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 exmo API documentation: exmo.me

51 implicit endpoints across 3 access groups.

web

Base URL: https://exmo.me

MethodHTTPEndpointCost
webGetCtrlFeesAndLimitsGETctrl/feesAndLimits1
webGetEnDocsFeesGETen/docs/fees1

public

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

MethodHTTPEndpointCost
publicGetCurrencyGETcurrency1
publicGetCurrencyListExtendedGETcurrency/list/extended1
publicGetOrderBookGETorder_book1
publicGetPairSettingsGETpair_settings1
publicGetTickerGETticker1
publicGetTradesGETtrades1
publicGetCandlesHistoryGETcandles_history1
publicGetRequiredAmountGETrequired_amount1
publicGetPaymentsProvidersCryptoListGETpayments/providers/crypto/list1

private

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

MethodHTTPEndpointCost
privatePostUserInfoPOSTuser_info1
privatePostOrderCreatePOSTorder_create1
privatePostOrderCancelPOSTorder_cancel1
privatePostStopMarketOrderCreatePOSTstop_market_order_create1
privatePostStopMarketOrderCancelPOSTstop_market_order_cancel1
privatePostUserOpenOrdersPOSTuser_open_orders1
privatePostUserTradesPOSTuser_trades1
privatePostUserCancelledOrdersPOSTuser_cancelled_orders1
privatePostOrderTradesPOSTorder_trades1
privatePostDepositAddressPOSTdeposit_address1
privatePostWithdrawCryptPOSTwithdraw_crypt1
privatePostWithdrawGetTxidPOSTwithdraw_get_txid1
privatePostExcodeCreatePOSTexcode_create1
privatePostExcodeLoadPOSTexcode_load1
privatePostCodeCheckPOSTcode_check1
privatePostWalletHistoryPOSTwallet_history1
privatePostWalletOperationsPOSTwallet_operations1
privatePostMarginUserOrderCreatePOSTmargin/user/order/create1
privatePostMarginUserOrderUpdatePOSTmargin/user/order/update1
privatePostMarginUserOrderCancelPOSTmargin/user/order/cancel1
privatePostMarginUserPositionClosePOSTmargin/user/position/close1
privatePostMarginUserPositionMarginAddPOSTmargin/user/position/margin_add1
privatePostMarginUserPositionMarginRemovePOSTmargin/user/position/margin_remove1
privatePostMarginCurrencyListPOSTmargin/currency/list1
privatePostMarginPairListPOSTmargin/pair/list1
privatePostMarginSettingsPOSTmargin/settings1
privatePostMarginFundingListPOSTmargin/funding/list1
privatePostMarginUserInfoPOSTmargin/user/info1
privatePostMarginUserOrderListPOSTmargin/user/order/list1
privatePostMarginUserOrderHistoryPOSTmargin/user/order/history1
privatePostMarginUserOrderTradesPOSTmargin/user/order/trades1
privatePostMarginUserOrderMaxQuantityPOSTmargin/user/order/max_quantity1
privatePostMarginUserPositionListPOSTmargin/user/position/list1
privatePostMarginUserPositionMarginRemoveInfoPOSTmargin/user/position/margin_remove_info1
privatePostMarginUserPositionMarginAddInfoPOSTmargin/user/position/margin_add_info1
privatePostMarginUserWalletListPOSTmargin/user/wallet/list1
privatePostMarginUserWalletHistoryPOSTmargin/user/wallet/history1
privatePostMarginUserTradeListPOSTmargin/user/trade/list1
privatePostMarginTradesPOSTmargin/trades1
privatePostMarginLiquidationFeedPOSTmargin/liquidation/feed1