CCXT
coinmetro

coinmetro implicit API

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

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

const coinmetro = new ccxt.coinmetro ();
const response = await coinmetro.publicGetDemoTemp (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 coinmetro API documentation: documenter.getpostman.com

30 implicit endpoints across 2 access groups.

public

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

MethodHTTPEndpointCost
publicGetDemoTempGETdemo/temp1
publicGetExchangeCandlesPairTimeframeFromToGETexchange/candles/{pair}/{timeframe}/{from}/{to}3
publicGetExchangePricesGETexchange/prices1
publicGetExchangeTicksPairFromGETexchange/ticks/{pair}/{from}3
publicGetAssetsGETassets1
publicGetMarketsGETmarkets1
publicGetExchangeBookPairGETexchange/book/{pair}3
publicGetExchangeBookUpdatesPairFromGETexchange/bookUpdates/{pair}/{from}1

private

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

MethodHTTPEndpointCost
privateGetUsersBalancesGETusers/balances1
privateGetUsersWalletsGETusers/wallets1
privateGetUsersWalletsHistorySinceGETusers/wallets/history/{since}1.67
privateGetExchangeOrdersStatusOrderIDGETexchange/orders/status/{orderID}1
privateGetExchangeOrdersActiveGETexchange/orders/active1
privateGetExchangeOrdersHistorySinceGETexchange/orders/history/{since}1.67
privateGetExchangeFillsSinceGETexchange/fills/{since}1.67
privateGetExchangeMarginGETexchange/margin1
privatePostJwtPOSTjwt1
privatePostJwtDevicePOSTjwtDevice1
privatePostDevicesPOSTdevices1
privatePostJwtReadOnlyPOSTjwt-read-only1
privatePostExchangeOrdersCreatePOSTexchange/orders/create1
privatePostExchangeOrdersModifyOrderIDPOSTexchange/orders/modify/{orderID}1
privatePostExchangeSwapPOSTexchange/swap1
privatePostExchangeSwapConfirmSwapIdPOSTexchange/swap/confirm/{swapId}1
privatePostExchangeOrdersCloseOrderIDPOSTexchange/orders/close/{orderID}1
privatePostExchangeOrdersHedgePOSTexchange/orders/hedge1
privatePutJwtPUTjwt1
privatePutExchangeOrdersCancelOrderIDPUTexchange/orders/cancel/{orderID}1
privatePutUsersMarginCollateralPUTusers/margin/collateral1
privatePutUsersMarginPrimaryCurrencyPUTusers/margin/primary/{currency}1

On this page