Ultra-low latency WebSocket feed for real-time crypto exchange listing announcements.
Join Telegram Channel?cex= parameter. Receive only what you need.Join our Telegram channel for updates, or contact us directly to get your API key and start trading new listings in real time.
Join Telegram Channel{
"type": "announcement",
"title": "Binance Will List TOKEN",
"ticker": "TOKEN",
"publisher": "binance",
"listingType": "spot_listing",
"publishTimestampUs": 1710345000000000,
"detectedTimestampUs": 1710345000005000,
"dispatchTimestampUs": 1710345000006000
}
# pip install websocket-client import json, websocket def on_message(ws, msg): d = json.loads(msg) if d["type"] == "announcement": print(f"{d['ticker']} on {d['publisher']}") websocket.WebSocketApp( "wss://cryptolisting.ws", header=["X-API-Key: YOUR_KEY"], on_message=on_message, ).run_forever()
It depends on the exchange. For CEX with servers in Tokyo (Binance, Bybit, OKX…), our detection-to-dispatch latency is sub-1 millisecond. Our infrastructure sits in the same AWS Tokyo region, so the round-trip is virtually zero.
For Korean exchanges like Bithumb and Upbit, expect around ~20 ms. Their announcement servers are in Seoul, so there's an incompressible Seoul ↔ Tokyo network hop. That said, the major CEX you'd actually buy on (Binance, Bybit) are in Tokyo — so the full pipeline from alert to order execution stays sub-millisecond if your trading bot is co-located with us.
Most competitors rely on polling or Telegram relays that add hundreds of milliseconds to seconds of delay. We are consistently the lowest-latency option available today across all monitored exchanges.
Our entire infrastructure runs on AWS Tokyo (ap-northeast-1). This is where the majority of major CEX (Binance, Bybit, OKX) have their matching engines and announcement servers.
For the absolute best performance, we recommend running your trading bot on a server in AWS Tokyo as well. With both ends in the same datacenter region, you can expect sub-2 ms end-to-end latency between our WebSocket dispatch and your bot receiving the message — leaving you the maximum edge to execute trades before the market moves.
?cex=binance,upbit query parameter.wss://cryptolisting.ws with your API key in the X-API-Key header. You'll receive structured JSON messages instantly. Works with any WebSocket library in any language.ticker field will be comma-separated (e.g. ABC,DEF,GHI). Split on comma to get individual symbols.Get your API key in minutes or explore the full documentation.