Skip to main content

Exchange Information

Type: NONE

External endpoint: GET /fapi/v1/exchangeInfo
Rocky impl: GET /fapi/v1/exchangeInfo

Returns metadata for every supported pair on Rocky's FAPI surface. No parameters; not signed.

Request

GET /fapi/v1/exchangeInfo

Response — 200

{
"timezone": "UTC",
"serverTime": 1748275200000,
"symbols": [
{
"symbol": "BTCUSDT",
"pair": "BTC-PERP",
"status": "TRADING",
"baseAsset": "BTC",
"quoteAsset": "USDT",
"pricePrecision": 2,
"quantityPrecision": 3
}
]
}
FieldTypeNotes
symbolstringstandard form, e.g. BTCUSDT.
pairstringRocky internal symbol (BTC-PERP). Rocky-specific extension.
statusstringAlways "TRADING" today.
pricePrecisionintDecimals allowed on price.
quantityPrecisionintDecimals allowed on quantity.

Example

curl https://demo.rocky.exchange/fapi/v1/exchangeInfo

Rocky also exposes GET /v1/markets which returns the same listing in Rocky's native shape (symbol, base, quote, max_leverage, tick_size, min_qty). Use it from the web UI.