Skip to main content
GET
/
exchangeInfo
Get exchange info
curl --request GET \
  --url https://exchange-api2.bulk.trade/api/v1/exchangeInfo
[
  {
    "symbol": "BTC-USD",
    "baseAsset": "BTC",
    "quoteAsset": "USDC",
    "status": "TRADING",
    "pricePrecision": 1,
    "sizePrecision": 8,
    "tickSize": 0.5,
    "lotSize": 0.001,
    "minNotional": 10,
    "maxLeverage": 10,
    "orderTypes": [
      "LIMIT",
      "MARKET"
    ],
    "timeInForces": [
      "GTC",
      "IOC"
    ]
  }
]
Returns information about all available markets including trading rules, precision, leverage limits, and supported order types.

Response

Successful response

symbol
string
Example:

"BTC-USD"

baseAsset
string

Base currency

Example:

"BTC"

quoteAsset
string

Quote currency

Example:

"USDC"

status
enum<string>
Available options:
TRADING,
SUSPENDED,
CLOSED
pricePrecision
integer

Decimal places for price

sizePrecision
integer

Decimal places for size

tickSize
number

Minimum price increment

lotSize
number

Minimum order size

minNotional
number

Minimum order value (price × size)

maxLeverage
integer

Maximum allowed leverage

orderTypes
string[]
timeInForces
string[]