New: Binance Delisting & Airdrop Alerts

Last updated

We now detect Binance delistings and HODLer Airdrops in real time. Two new announcement types, same ultra-fast delivery, same WebSocket API.

What's new

Until now, CryptoListing.ws focused exclusively on new coin listings. Starting today, we also detect and deliver two additional Binance announcement types:

Both types are delivered over the same WebSocket connection you already use. No code changes needed on your end unless you want to filter or act on them specifically.

New listing types

Your WebSocket messages now include three new possible values for the listingType field:

"spot_delisting"      // Binance spot market delisting
"futures_delisting"   // Binance futures contract delisting
"hodler_airdrop"      // Binance HODLer Airdrop announcement

These are in addition to the existing spot_listing, futures_listing, and not_listing types. All types include parsed ticker symbols and microsecond timestamps as usual.

Why delistings matter

Delisting announcements are the inverse of listings. When Binance announces it will remove a token, the price typically drops 20-50% within minutes as traders rush to exit. Detecting delistings early allows you to close positions, hedge, or short the asset on other venues before the market fully reacts.

We detect both spot delistings (tokens removed from Binance spot trading) and futures delistings (perpetual contracts being settled). Multi-ticker delistings are supported — each affected ticker is extracted and included in the message.

The anatomy of a Binance delisting

Binance rarely pulls a token without a paper trail. A delisting is usually the last step in a sequence: thinning liquidity, a community "Vote to Delist" round, or a spell under the Monitoring Tag risk watchlist. The public notice in Binance's announcement center sets a firm cease-trading timestamp, followed by deposit and withdrawal deadlines that frequently fall days after spot trading itself stops. Reading those windows correctly matters: a token can be untradeable on Binance spot while its balance is still withdrawable to another venue where it keeps trading.

Perpetual contracts work differently. Instead of a simple halt, open positions are settled at a mark price at a stated time, so a futures_delisting carries different unwind mechanics than a spot_delisting on the same asset. Because the notice front-runs the real removal by hours or days, the price reaction happens on the announcement, not the execution — which is exactly the window a real-time alert is built to capture. For a plain-language primer on the mechanics, see Investopedia's definition of delisting, or our glossary entry on delisting.

Why HODLer Airdrops matter

Binance HODLer Airdrops are a strong leading indicator for upcoming spot listings. When Binance announces an airdrop for a new token, the price on other exchanges and DEXs pumps immediately — often 20-40% within minutes — as traders front-run the upcoming Binance listing. The token almost always gets listed for spot trading on Binance shortly after, driving a second wave of price action. Detecting the airdrop announcement early puts you ahead of both moves.

How HODLer Airdrops fit the listing pipeline

A HODLer Airdrop is rarely a standalone giveaway — it is the opening move of a listing. Binance takes a series of snapshots of user BNB balances over a scoring window, allocates the new token to holders, and then, almost without exception, opens spot trading for that same token a short time later. The airdrop announcement is therefore one of the highest-confidence early indicators of an imminent Binance spot listing that exists in the market.

That two-stage structure is why the airdrop event is worth its own listingType. The first wave moves when the airdrop is announced and the token is already trading on other venues or DEXs; the second moves when Binance spot itself goes live. Because we classify the announcement as hodler_airdrop rather than leaving you to pattern-match the title text, your handler can treat it as a distinct signal class from an ordinary spot_listing and route it to whatever logic you want. General background on airdrops is in Investopedia's airdrop explainer, and the term is defined in our glossary.

Filtering by type

If you only want specific announcement types, simply check the listingType field in your message handler:

def on_message(ws, msg):
    data = json.loads(msg)
    if data["type"] != "announcement":
        return

    lt = data["listingType"]

    if lt in ("spot_listing", "futures_listing"):
        buy(data["ticker"])

    elif lt in ("spot_delisting", "futures_delisting"):
        sell(data["ticker"])

    elif lt == "hodler_airdrop":
        alert(data["ticker"])

Handling multiple tickers safely

Delistings are frequently announced in batches — one notice removing several tokens at once. Following the same convention as listings, a multi-ticker delisting arrives as a single event with the affected symbols joined comma-separated in the ticker field. Always treat ticker as a potential list rather than a single symbol:

for sym in data["ticker"].split(","):
    unwind(sym)

Every message also carries the parsed publisher, a microsecond detectedTimestampUs, and an abnormalDetectionLatency flag you can use to gate automated actions. The full field semantics live in the message reference, and the glossary defines each term.

Why the feed stays narrow

Binance publishes a large volume of notices — maintenance windows, token swaps, staking and Launchpool changes — most of which never move a price. We deliberately forward only the trade-actionable announcement types (listings, delistings, and airdrops) so your handler isn't buried under noise it has to filter out itself. If you also want the Monitoring Tag risk signals that often precede a delisting, those arrive as their own event types, described in Binance Monitoring Tag Alerts.

Speed matters most on exactly these events. General-purpose channels are slower to carry an announcement — a Telegram relay typically lands 150–500 ms behind the source, and a post on X can trail by 2–10 seconds — which is a long time when a delisting is repricing an illiquid token or an airdrop is front-running a listing. A direct WebSocket push removes that relay hop entirely, so your handler sees the structured event, ticker already parsed, as close to publication as the transport allows. For a side-by-side of the delivery methods, see How to Detect New Crypto Listing Announcements in Real-Time.

Currently Binance only

Delisting and airdrop detection is currently available for Binance. We may extend coverage to other exchanges in the future. Listings remain supported across Binance, Upbit, and Bithumb.

For full details, see our updated message reference, the Binance delisting alert page, and the Binance airdrop alert page.

This article is for informational purposes only and is not financial advice. CryptoListing.ws is a technical data feed service — see Legal.

Related

Start receiving all Binance alerts

Listings, delistings, and airdrops — all via the same WebSocket connection. See our pricing & tiers — free SpeedTrial key available, plus FreeDelayed (full feed, +240 ms).

Get started on Telegram