Back to Ccxt

Cryptomus

wiki/exchanges-implicit/cryptomus.md

4.5.643.6 KB
Original Source

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:

<!-- tabs:start -->

JavaScript

javascript
const cryptomus = new ccxt.cryptomus ();
const response = await cryptomus.publicGetV2UserApiExchangeMarkets (params);

TypeScript

typescript
import ccxt from 'ccxt';
const cryptomus = new ccxt.cryptomus ();
const response = await cryptomus.publicGetV2UserApiExchangeMarkets (params);

Python

python
import ccxt
cryptomus = ccxt.cryptomus()
response = cryptomus.public_get_v2_user_api_exchange_markets(params)

PHP

php
$cryptomus = new \ccxt\cryptomus();
$response = $cryptomus->public_get_v2_user_api_exchange_markets($params);

C#

csharp
using ccxt;
var cryptomus = new Cryptomus();
var response = await cryptomus.publicGetV2UserApiExchangeMarkets(parameters);

Go

go
cryptomus := ccxt.NewCryptomus(nil)
response := <-cryptomus.PublicGetV2UserApiExchangeMarkets(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 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