CCXT
mercado

mercado implicit API

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

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

const mercado = new ccxt.mercado ();
const response = await mercado.publicGetCoins (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 mercado API documentation: mercadobitcoin.com.br · mercadobitcoin.com.br

21 implicit endpoints across 4 access groups.

public

Base URL: https://www.mercadobitcoin.net/api

MethodHTTPEndpointCost
publicGetCoinsGETcoins
publicGetCoinOrderbookGET{coin}/orderbook/
publicGetCoinTickerGET{coin}/ticker/
publicGetCoinTradesGET{coin}/trades/
publicGetCoinTradesFromGET{coin}/trades/{from}/
publicGetCoinTradesFromToGET{coin}/trades/{from}/{to}
publicGetCoinDaySummaryYearMonthDayGET{coin}/day-summary/{year}/{month}/{day}/

private

Base URL: https://www.mercadobitcoin.net/tapi

MethodHTTPEndpointCost
privatePostCancelOrderPOSTcancel_order
privatePostGetAccountInfoPOSTget_account_info
privatePostGetOrderPOSTget_order
privatePostGetWithdrawalPOSTget_withdrawal
privatePostListSystemMessagesPOSTlist_system_messages
privatePostListOrdersPOSTlist_orders
privatePostListOrderbookPOSTlist_orderbook
privatePostPlaceBuyOrderPOSTplace_buy_order
privatePostPlaceSellOrderPOSTplace_sell_order
privatePostPlaceMarketBuyOrderPOSTplace_market_buy_order
privatePostPlaceMarketSellOrderPOSTplace_market_sell_order
privatePostWithdrawCoinPOSTwithdraw_coin

v4Public

Base URL: https://www.mercadobitcoin.com.br/v4

MethodHTTPEndpointCost
v4PublicGetCoinCandleGET{coin}/candle/

v4PublicNet

Base URL: https://api.mercadobitcoin.net/api/v4

MethodHTTPEndpointCost
v4PublicNetGetCandlesGETcandles

On this page