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
}
]
}
| Field | Type | Notes |
|---|---|---|
symbol | string | standard form, e.g. BTCUSDT. |
pair | string | Rocky internal symbol (BTC-PERP). Rocky-specific extension. |
status | string | Always "TRADING" today. |
pricePrecision | int | Decimals allowed on price. |
quantityPrecision | int | Decimals allowed on quantity. |
Example
curl https://demo.rocky.exchange/fapi/v1/exchangeInfo
Rocky also exposes
GET /v1/marketswhich returns the same listing in Rocky's native shape (symbol,base,quote,max_leverage,tick_size,min_qty). Use it from the web UI.