CCXT
cryptomus

cryptomus implicit API

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

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

const cryptomus = new ccxt.cryptomus ();
const response = await cryptomus.publicGetV2UserApiExchangeMarkets (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 cryptomus API documentation: doc.cryptomus.com

16 implicit endpoints across 2 access groups.

public

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

MethodHTTPEndpointCost
publicGetV2UserApiExchangeMarketsGETv2/user-api/exchange/markets1
publicGetV2UserApiExchangeMarketPriceGETv2/user-api/exchange/market/price1
publicGetV1ExchangeMarketAssetsGETv1/exchange/market/assets1
publicGetV1ExchangeMarketOrderBookCurrencyPairGETv1/exchange/market/order-book/{currencyPair}1
publicGetV1ExchangeMarketTickersGETv1/exchange/market/tickers1
publicGetV1ExchangeMarketTradesCurrencyPairGETv1/exchange/market/trades/{currencyPair}1

private

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

MethodHTTPEndpointCost
privateGetV2UserApiExchangeOrdersGETv2/user-api/exchange/orders1
privateGetV2UserApiExchangeOrdersHistoryGETv2/user-api/exchange/orders/history1
privateGetV2UserApiExchangeAccountBalanceGETv2/user-api/exchange/account/balance1
privateGetV2UserApiExchangeAccountTariffsGETv2/user-api/exchange/account/tariffs1
privateGetV2UserApiPaymentServicesGETv2/user-api/payment/services1
privateGetV2UserApiPayoutServicesGETv2/user-api/payout/services1
privateGetV2UserApiTransactionListGETv2/user-api/transaction/list1
privatePostV2UserApiExchangeOrdersPOSTv2/user-api/exchange/orders1
privatePostV2UserApiExchangeOrdersMarketPOSTv2/user-api/exchange/orders/market1
privateDeleteV2UserApiExchangeOrdersOrderIdDELETEv2/user-api/exchange/orders/{orderId}1

On this page