Documentation Index
Fetch the complete documentation index at: https://docs.binibit.com/llms.txt
Use this file to discover all available pages before exploring further.
What is Binibit API?
Binibit is a centralized cryptocurrency spot exchange. The Spot Market API is the public REST surface for real-time market data: tickers, order books, recent trades, candles, and asset metadata.
Key properties:
- Public — no API key, no authentication required for market data
- REST + JSON — every endpoint returns
application/json
- Real-time — data refreshes every few seconds
- Rate-limited — fair per-IP quotas by default (details)
Two API surfaces
| Host | Purpose |
|---|
public-api.binibit.com | Primary public API. Market data + (auth-gated) trading and wallet endpoints. |
internal-api.binibit.com/.../getcoingecko | Aggregator-spec namespace. A subset of market data reshaped to match CoinGecko Integration API Standards v8 for ingestion by data aggregators. |
Use the primary host unless you specifically need the CoinGecko-format response shape. See Base URL.
Endpoints at a glance
Market data (public-api.binibit.com)
| Endpoint | Purpose |
|---|
GET /api/tickers | 24h ticker for one pair |
GET /api/orderbook | Up to 40 bids + 40 asks for one pair |
GET /api/deals | Recent trades for one pair |
GET /api/ohlc | OHLCV candles |
GET /api/currencies | List of currency codes |
GET /api/currencies/pairs | Pair settings (precision, min order size) |
GET /api/currencies/commissions | Default commissions catalogue |
GET /api/healthcheck | Liveness probe |
Aggregator compatibility (internal-api.binibit.com)
| Endpoint | Purpose |
|---|
GET /tickers | All pairs in one CoinGecko-format response |
GET /orderbook | Order book for one pair, CoinGecko format |
GET /historical_trades | Recent trades, CoinGecko {buy: [], sell: []} shape |
GET /asset | Asset metadata in CoinMarketCap-compatible shape |
API stability
This is API v1. Breaking changes will be announced 30 days in advance via:
Roadmap
| Version | Scope |
|---|
| v1 (current) | Public market data on public-api.binibit.com/api/* and aggregator-spec namespace |
| v1.x | Cleaner path alias /v1/spot/market/*, server time endpoint, 24h summary endpoint |
| v2 | Documented authenticated trading API (HMAC-SHA256), WebSocket streams |
Need higher rate limits?
Market makers, aggregators, and high-volume integrators can request elevated rate limits and IP whitelisting. Email api@binibit.com.