Exchange Info
Trading rules and symbol metadata for the futures exchange. Passthrough of Binance USDⓈ-M Futures /fapi/v1/exchangeInfo.
Endpoint
GET /fapi/v1/exchangeInfo
Authentication: Public. No query parameters.
Response — 200 OK
The Binance USDⓈ-M Futures exchangeInfo payload, verbatim. Top-level shape:
{
"exchangeFilters": [],
"rateLimits": [ { "...": "..." } ],
"serverTime": 1745920800000,
"assets": [ { "asset": "USDT", "marginAvailable": true, "...": "..." } ],
"symbols": [
{
"symbol": "BTCUSDT",
"pair": "BTCUSDT",
"contractType": "PERPETUAL",
"baseAsset": "BTC",
"quoteAsset": "USDT",
"pricePrecision": 2,
"quantityPrecision": 3,
"filters": [
{ "filterType": "PRICE_FILTER", "...": "..." },
{ "filterType": "LOT_SIZE", "...": "..." }
],
"...": "..."
}
],
"timezone": "UTC"
}
For the full schema and the meaning of each filterType, see the upstream Binance USDⓈ-M Futures exchangeInfo reference.
Errors
| HTTP | Cause |
|---|---|
502 | Upstream Binance request failed. |
Example
curl -s "https://api.pipai.org/fapi/v1/exchangeInfo" | head -c 500