All systems operational

Crypto listing announcements
before anyone else

CryptoListing.ws is an ultra-low-latency WebSocket feed for real-time Binance, Upbit & Bithumb new coin listing notices.

#1
Fastest WebSocket provider
20K+
Announcements sent
>99.99%
Uptime
Latest Listings and Delistings
CEX Ticker Type Detection Timestamp
Loading…
wss://cryptolisting.ws
Tokyo — global feed · Binance, Upbit & Bithumb
wss://kr.cryptolisting.ws
Seoul — Korea region · Upbit only — ultra-fast from Korea

Bundle discounts when you take several exchanges, up to −30% on longer subscriptions, and one IP address included (a second one is available). The two free tiers stay free.

Calculate your price
μs precision
Dispatch latency
3 CEX
Live exchanges
24/7
Monitoring

Ultra-fast dispatch

From detection to your connection in real time. Zero-copy broadcast to all subscribers.

Structured JSON events

Pre-parsed ticker, listing type and publisher in every message. No text parsing — ready for immediate execution.

Exchange filtering

Subscribe to specific exchanges with the ?cex= parameter. Receive only what you need.

Always-on heartbeat

30-second heartbeats with server timestamps. Know immediately if your connection drops.

“In my opinion, with your speed, quality, reliability, and constant development, you simply do not have real competitors. Your announcement feed is the fastest and most reliable one I have seen.”
Premium tier subscriber
“I hope you will always be there. I am willing to keep paying for your professional services. It is extremely valuable.”
Basic tier subscriber
“I’ve been testing the SpeedTrial for the past few days and measuring the latency of the announcements. I’m very happy with the performance so far.”
SpeedTrial tier user
“I’ve really enjoyed testing your service over the past few days, and the latency measurements have been very impressive.”
FreeDelayed tier user
“Thank you for your service. It was very fast.”
Premium tier subscriber

Never miss a listing alert again

Join our Telegram channel for updates, or contact us directly to get your API key and start trading new listings in real time. See our pricing & tiers to pick the plan that fits you.

Join Telegram Channel
Example message
{
  "type": "announcement",
  "title": "Binance Will List TOKEN",
  "ticker": "TOKEN",
  "publisher": "binance",
  "listingType": "spot_listing",
  "detectedTimestampUs": 1710345000005000,
  "dispatchTimestampUs": 1710345000006000
}
Quick start — Python
# 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()
Which exchanges do you monitor?
Binance, Upbit, and Bithumb are live now. More exchanges are being added regularly. You can filter by exchange using the ?cex=binance,upbit query parameter.
What types of announcements are detected?
Spot & futures listings and delistings, HODLer Airdrops, Binance Monitoring Tag changes (extend / remove), Upbit & Bithumb caution releases, plus maintenance and token-swap announcements. Every message carries the type, so you can filter programmatically.
How fast are the alerts?
Ultra-fast — from detection to your WebSocket connection in real time. Faster than Telegram bots, email alerts and other WebSocket-based providers.
How fast are you compared to competitors?

Every alternative adds delivery overhead we don’t have: Telegram listing bots typically deliver in 150–500 ms, X / Twitter pipelines in 2–10 s, email alerts in 5–60 s, and DIY scrapers in 200 ms – 2 s. CryptoListing.ws pushes each announcement over a persistent WebSocket the instant it is detected — no broadcast queue, no polling.

That edge comes from a purpose-built low-latency stack and in-region infrastructure: the Tokyo endpoint sits in the same AWS region as Binance, and the Seoul mirror wss://kr.cryptolisting.ws removes the Seoul → Tokyo hop for Upbit — making us consistently the fastest option across all monitored exchanges.

And you don’t have to take our word for it: the free SpeedTrial tier streams the production feed with a 1 ms courtesy delay so paying subscribers are served first and microsecond timestamps on every event, so you can benchmark us directly against whatever you use today.

How do I measure my latency?
Every announcement includes three timestamps: when the exchange published it, when we detected it, and when we dispatched it. Compare the dispatch timestamp to your receive time to calculate your exact network latency.
Can I use this for automated trading?
Yes. The API is designed specifically for trading bots. Every message is structured JSON with consistent field names, microsecond timestamps, and the ticker symbol ready for immediate execution.
How much does it cost?
Both free tiers cost nothing. Paid feeds are billed per exchange, per month: Basic is 200 USDT for Binance, 200 USDT for BitHumb and 400 USDT for UpBit; Premium is 350, 350 and 750 USDT. Bundle discounts start at two exchanges, longer subscriptions go up to −30%, and one IP address is included. Full grid and price calculator on the pricing page.
How do I get an API key?
Contact us on Telegram @CLWfeed. We'll set you up in minutes.
How do I connect?
Connect to wss://cryptolisting.ws or wss://kr.cryptolisting.ws with your API key in the X-API-Key header — the same key works on both. You get structured JSON instantly, with any WebSocket library in any language.
Where are your servers located?

Dual-region on AWS. Tokyo (ap-northeast-1a - apne1-az4) hosts the global endpoint wss://cryptolisting.ws — same AWS region as Binance — carrying the full feed. Seoul (ap-northeast-2c - apne2-az3) hosts the Upbit-only mirror wss://kr.cryptolisting.ws.

For the best end-to-end latency, co-locate your bot with the exchange it trades: AWS Tokyo for Binance, AWS Seoul for Upbit.

Which endpoint should I use — Tokyo or Seoul?

Pick by your bot’s location, not the exchange you trade. Bot in AWS Tokyo / Japan → wss://cryptolisting.ws (full feed). Bot in AWS Seoul / Korea → wss://kr.cryptolisting.ws (Upbit only, no Seoul → Tokyo hop).

Same API key on both — one endpoint per bot, chosen by its region.

What if a listing has multiple tickers?
Some exchanges list multiple tokens in a single announcement. The ticker field will be comma-separated (e.g. ABC,DEF,GHI). Split on comma to get individual symbols.

Ready to get low-latency WebSocket alerts?

Get your API key in minutes or explore the full documentation.