Currency rates and limits

Description: Retuns the current trading rules and ticker information on exchange

GET

/ver1/accounts/currency_rates

Query Parameters

market_code integer required Unique exchange code in the 3Commas system

pair integer required Trading pair in 3Commas format

The market and trading pair codes are used in 3Commas format. Use endpoints Supported Markets List to get value for parameter market_code and All Market Pairs to get value for parameter pair in 3Commas format.

Response Parameters

last string Last price

bid string Bid price

ask string Ask price

orderbook_ask string Ask price of ticker

orderbook_bid string Bid price of ticker

orderbook_last string Last price of ticker

orderbook_price_currency string Currency price of ticker

strategy_name string The name of trading strategy

contract_strategy_name string The strategy by which the contract price is calculated

instrumentKind string The type of exchange instrument

minPrice string Minimum price order

maxPrice string Maximum price order

priceStep string The minimum step for changing the price

minLotSize string The minimum lot size for order in Base currency

lotStep string Order of changing the size in Base currency

maxMarketBuyAmount string Maximum order size in Base currency for buy

maxMarketSellAmount string Maximum order size in Base currency for sell

bidMultiplierDown string A multiplier applied to decrease the bid price

bidMultiplierUp string A multiplier applied to increase the bid price

askMultiplierUp string A multiplier applied to increase the ask price

askMultiplierDown string A multiplier applied to decrease the ask price

minTotal string Minimum order size in Quote

minMarketTotal string Minimum order size in Quote for market order

maxTotal string Maximum order size in Quote

maxLotSize string Maximum order size in Base

Example request

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

Example Response and errors

Status: 200 OK

{
  "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"
}

Last updated

Was this helpful?