Introduction
Real-time WebSocket feed for crypto exchange listing announcements.
What is this?
This service delivers instant notifications when a cryptocurrency exchange publishes an announcement – listings and other exchange announcements. You connect via WebSocket and receive structured JSON messages in real time.
Currently supported exchanges:
| Exchange | Status |
|---|---|
| Binance | Live |
| Bithumb | Live |
| Upbit | Live |
| More coming soon | – |
Supported announcement types:
| Type | Description |
|---|---|
spot_listing | New spot market listing |
futures_listing | New futures/perpetual listing |
spot_delisting | Spot market delisting (coming soon) |
futures_delisting | Futures/perpetual delisting (coming soon) |
not_listing | Other exchange announcement (maintenance, airdrop, token swap, etc.) |
How it works
Exchange publishes announcement
|
v
Detection engine (< 5ms)
|
v
Dispatch server (< 1ms)
|
v
Your WebSocket client
- Our detection engine monitors exchange announcement pages continuously.
- When a new listing is detected, it is parsed, classified, and forwarded to the dispatch server.
- The dispatch server broadcasts the announcement to all connected WebSocket subscribers simultaneously.
- You receive a JSON message with the ticker, exchange, listing type, and precise timestamps.
Key features
- Ultra-low latency – sub-millisecond dispatch from detection to your connection.
- Precise timestamps – microsecond-resolution timestamps at every stage (publish, detect, dispatch) so you can measure your exact latency.
- Exchange filtering – subscribe only to the exchanges you care about.
- Always-on heartbeat – know immediately if your connection drops.
- Zero-copy broadcast – announcements are serialized once and shared across all subscribers for maximum throughput.
Quick links
| Topic | Description |
|---|---|
| Quick Start | Connect in under 5 minutes |
| Authentication | API key format and usage |
| WebSocket API | Connection details and parameters |
| Message Reference | Full JSON schema for all messages |
| Exchange Filtering | Subscribe to specific exchanges |
| Rate Limits & Security | Limits, TLS, and security details |
| Error Handling & Reconnection | Close codes and retry strategy |
| Code Examples | Python, Node.js, Go examples |