Introduction
Real-time WebSocket feed for crypto exchange listing announcements. Connect over WSS, receive structured JSON the moment a listing, delisting, or risk event is detected.
For LLMs, full documentation in a single txt file here.
Supported exchanges
| Exchange | Status |
|---|---|
| Binance | Live |
| Upbit | Live |
| Bithumb | Live |
Announcement types
| Type | Description | Exchanges | Impact |
|---|---|---|---|
spot_listing | New spot market listing | Binance, Upbit, Bithumb | + |
spot_delisting | Spot market delisting | Binance, Upbit, Bithumb | − |
futures_listing | New futures / perpetual listing | Binance | + |
futures_delisting | Futures / perpetual delisting | Binance | − |
hodler_airdrop | Binance HODLer Airdrop | Binance | + |
monitoring_tag_extend | Token added to Binance’s Monitoring Tag | Binance | − |
monitoring_tag_remove | Token removed from Binance’s Monitoring Tag | Binance | + |
caution_released | Caution designation lifted | Bithumb, Upbit | + |
not_listing | Other announcement (maintenance, token swap, etc.) | Binance, Upbit | n/a |
See Message Reference for full payload schemas.
Features
- Microsecond timestamps at every stage (detect, dispatch).
- Pre-parsed
tickerandlistingTypeon every message; originaltitlekept for cross-checking. - Per-exchange filtering via
?cex=. - WebSocket PING every 15 s; libraries handle PONG automatically.
Next steps
| Page | Purpose |
|---|---|
| Quick Start | Connect in under 5 minutes |
| Authentication | API key format and usage |
| WebSocket API | Endpoints, lifecycle, query parameters |
| Message Reference | JSON schemas for every message type |
| Exchange Filtering | ?cex= and event-type filtering |
| Rate Limits | Connection, message, and per-key caps |
| Error Handling | Close codes and reconnection strategy |
| Code Examples | Python, Node.js, Go, Rust |