Skip to main content

Currency rates and limits

GET
/ver1/accounts/currency_rates
Permission: NONE
Security: NONE

The method returns the current trading rules and ticker information on exchange.


Query Parameters

market_codeintegerrequired

Unique exchange code in the 3Commas system.

Use endpoint Supported markets list to get value for parameter market_code.

pairstringrequired

Trading pair in 3Commas format.

Use endpoints All Market Pairs to get value for parameter pair in 3Commas format.

limit_typestring

Defines the type of trading limits returned based on the selected trading tool bot or smart_trade:


  • If set to bot, the response includes trading limits specific to DCA, Signal and Grid Bots
  • If set to smart_trade, the response includes trading limits for SmartTrade

Example Request

GET
/ver1/accounts/currency_rates?market_code=binance&pair=BTC_ETH

Response Parameters

lastinteger

Last price.

bidstring

Bid price.

askstring

Ask price.

orderbook_askstring

Ask price of ticker.

More attributes

Example Response

{
"last": "63802.44",
"bid": "63802.44",
"ask": "63802.45",
"orderbook_ask": "63802.45",
"orderbook_bid": "63802.44",
"orderbook_last": "63802.44",
"orderbook_price_currency": "USDT",
"strategy_name": "orderbook_price",
"contract_strategy_name": "orderbook_price",
"instrumentKind": "spot",
"minPrice": "0.01",
"maxPrice": "1000000.0",
"priceStep": "0.01",
"minLotSize": "0.00001",
"lotStep": "0.00001",
"maxMarketBuyAmount": "121.22278732",
"maxMarketSellAmount": "121.22278732",
"bidMultiplierDown": "0.2",
"bidMultiplierUp": "5.0",
"askMultiplierUp": "5.0",
"askMultiplierDown": "0.2",
"minTotal": "5.0",
"minMarketTotal": "5.0",
"maxTotal": "9000000.0",
"maxLotSize": "9000.0"
}