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
| Method | HTTP | Endpoint | Cost |
|---|---|---|---|
publicGetV2UserApiExchangeMarkets | GET | v2/user-api/exchange/markets | 1 |
publicGetV2UserApiExchangeMarketPrice | GET | v2/user-api/exchange/market/price | 1 |
publicGetV1ExchangeMarketAssets | GET | v1/exchange/market/assets | 1 |
publicGetV1ExchangeMarketOrderBookCurrencyPair | GET | v1/exchange/market/order-book/{currencyPair} | 1 |
publicGetV1ExchangeMarketTickers | GET | v1/exchange/market/tickers | 1 |
publicGetV1ExchangeMarketTradesCurrencyPair | GET | v1/exchange/market/trades/{currencyPair} | 1 |
private
Base URL: https://api.cryptomus.com
| Method | HTTP | Endpoint | Cost |
|---|---|---|---|
privateGetV2UserApiExchangeOrders | GET | v2/user-api/exchange/orders | 1 |
privateGetV2UserApiExchangeOrdersHistory | GET | v2/user-api/exchange/orders/history | 1 |
privateGetV2UserApiExchangeAccountBalance | GET | v2/user-api/exchange/account/balance | 1 |
privateGetV2UserApiExchangeAccountTariffs | GET | v2/user-api/exchange/account/tariffs | 1 |
privateGetV2UserApiPaymentServices | GET | v2/user-api/payment/services | 1 |
privateGetV2UserApiPayoutServices | GET | v2/user-api/payout/services | 1 |
privateGetV2UserApiTransactionList | GET | v2/user-api/transaction/list | 1 |
privatePostV2UserApiExchangeOrders | POST | v2/user-api/exchange/orders | 1 |
privatePostV2UserApiExchangeOrdersMarket | POST | v2/user-api/exchange/orders/market | 1 |
privateDeleteV2UserApiExchangeOrdersOrderId | DELETE | v2/user-api/exchange/orders/{orderId} | 1 |