Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

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:

ExchangeStatus
BinanceLive
BithumbLive
UpbitLive
More coming soon

Supported announcement types:

TypeDescription
spot_listingNew spot market listing
futures_listingNew futures/perpetual listing
spot_delistingSpot market delisting (coming soon)
futures_delistingFutures/perpetual delisting (coming soon)
not_listingOther 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
  1. Our detection engine monitors exchange announcement pages continuously.
  2. When a new listing is detected, it is parsed, classified, and forwarded to the dispatch server.
  3. The dispatch server broadcasts the announcement to all connected WebSocket subscribers simultaneously.
  4. 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.
TopicDescription
Quick StartConnect in under 5 minutes
AuthenticationAPI key format and usage
WebSocket APIConnection details and parameters
Message ReferenceFull JSON schema for all messages
Exchange FilteringSubscribe to specific exchanges
Rate Limits & SecurityLimits, TLS, and security details
Error Handling & ReconnectionClose codes and retry strategy
Code ExamplesPython, Node.js, Go examples