Binance new listings and Alpha alerts over WebSocket
New Listings Feed tracks Binance new listings across spot, futures and Binance Alpha, plus launch programs and wallet updates. Follow them free on our website, Telegram and X, or send each listing announcement to your trading bot through our ultra-low-latency WebSocket API, as a raw notice or a parsed event with available onchain data.
This feed delivers Binance announcements to your application. Spot listings, Alpha features, Alpha Live and wallet asset additions are separate events, so you can select the notices your system follows.
$PONS, 哈基米 listed on Binance futures
— New Listings Feed (@NewListingsFeed) View original post
Binance events we send
Alpha Featured means Binance announced the token for Binance Alpha; trading may not have started. Alpha Live means the token is added to Binance Alpha 2.0 and is live there.
Both use event: listing. Alpha Featured uses type: alpha; Alpha Live uses type: alpha-live. parser.display says featured on Binance Alpha or live on Binance Alpha 2.0.
Monitoring-tag changes are risk notices. Their classification does not confirm that trading has started or ended.
Wallet asset additions identify a new asset that is not tradable yet. A wallet-contract notice identifies a new contract for an asset. Wallet-tradable means the asset is now tradable on Binance wallet; it is separate from a Binance spot listing.
$MARSCOIN listed on Binance futures
— New Listings Feed (@NewListingsFeed) View original post
Scroll horizontally to compare all columns.
| Notice | event | type |
|---|---|---|
| Spot listing | listing | spot |
| Futures listing | listing | futures |
| Alpha Featured | listing | alpha |
| Alpha Live on Binance Alpha 2.0 | listing | alpha-live |
| Launchpool | listing | launchpool |
| HODLer airdrop | listing | hodler_airdrop |
| Megadrop | listing | megadrop |
| Pre-market listing | listing | pre-market |
| Monitoring-tag removal | listing | monitoring-removal |
| New wallet asset | listing | wallet-asset |
| New wallet contract | listing | wallet-contract |
| Wallet asset now tradable | listing | wallet-tradable |
| Delisting | delisting | spot, futures, alpha |
| Monitoring-tag addition | delisting | monitoring |
Binance Alpha listings
New Listings Feed sends both Binance Alpha notices. Alpha Featured means Binance announced the token for Binance Alpha, which can come days before trading opens. Alpha Live means the token is added to Binance Alpha 2.0 and is live there.
Recent Alpha listings in the feed include $APM, $4STOCK and $MEME. To receive only Alpha notices, subscribe with market_type=alpha,alpha-live, or follow every new Binance Alpha listing on our live feed.
Test the fastest feed for Binance listing sniping
For Binance announcements, connect directly to our dedicated AWS Tokyo WebSocket: wss://tokyo.newlistings.pro/v2/fast for raw notices or wss://tokyo.newlistings.pro/v2/full for parsed events. STARTER and PRO also include New York and Seoul; compare arrivals from your bot server.
For Binance listing sniping, choose the event your bot needs. /v2/fast sends the raw notice before parsing for bots with their own parser; /v2/full sends classified events with tickers and market types.
New Listings Feed is the fastest listing WebSocket for Binance bots and sniping. Don't rely on that claim alone. Capture Binance announcements on your bot's server and compare arrival times for the same spot, futures or Alpha notice. Test the event type your bot actually uses.
FREE includes a 3-second configured delay for integration testing. Compare our fastest delivery with a PRO capture at zero configured delay; network delivery time remains separate.
Paid keys include token contracts, project matches and onchain market data when available. Exchange-published contracts and inferred matches remain separately labeled in the event.
Binance new listing announcements in the feed
This recorded /v2/fast Binance event took 187µs (0.187ms) from detection to publication.
The historical listings below have illustrative v2 full JSON excerpts for paid keys, including recorded contract data. Those excerpts omit event IDs, timestamps and market metrics. Dates are publication dates in UTC.
- /v2/fast · $APM live on Binance Alpha 2.0 · 0.187ms processing
v2 JSON example
{ "id": 3665203213873152, "type": "announcement", "exchange": "binance", "text": "New Binance Alpha: apM Fashion (APM). Chain: BSC. Contract: 0x72a22faa6a522c81a8f5d508381e18af3da0921e. MC: 6595655", "url": "https://www.binance.com/en/binancewallet/0x72a22faa6a522c81a8f5d508381e18af3da0921e", "detected_time_us": 1789650006774389, "sent_time_us": 1789650006774576 } - $牛来 listed on Binance spot
v2 JSON example
{ "type": "announcement", "parser": { "exchange": "binance", "classification": { "event": "listing", "type": "spot", "category": "crypto" }, "display": "$牛来 listed on Binance spot", "assets": [ { "symbol": "牛来", "contracts": [ { "chain": "bsc", "contract": "0xbeea1d618e533a387d941f58a7d4c9b7bd377777" } ] } ] } } - $4STOCK live on Binance alpha
v2 JSON example
{ "type": "announcement", "url": "https://www.binance.com/en/binancewallet/0xd270d4e1ec6e6e0d28c0ecb8be966ec75997ffff", "parser": { "exchange": "binance", "classification": { "event": "listing", "type": "alpha-live", "category": "crypto" }, "display": "$4STOCK live on Binance alpha", "assets": [ { "symbol": "4STOCK", "contracts": [ { "chain": "bsc", "contract": "0xd270d4e1ec6e6e0d28c0ecb8be966ec75997ffff" } ] } ] } } - $MEME live on Binance alpha
v2 JSON example
{ "type": "announcement", "url": "https://www.binance.com/en/binancewallet/0x385f4f8ae47651ce5f58f5265395a669f8281e18", "parser": { "exchange": "binance", "classification": { "event": "listing", "type": "alpha-live", "category": "crypto" }, "display": "$MEME live on Binance alpha", "assets": [ { "symbol": "MEME", "contracts": [ { "chain": "robinhood", "contract": "0x385f4f8ae47651ce5f58f5265395a669f8281e18" } ] } ] } }
Choose the Binance events you need
Use exchange=binance&market_type=spot for spot events, or market_type=futures for futures. Add comma-separated values to subscribe to several types, such as market_type=spot,futures.
For both Alpha Featured and Alpha Live events, use market_type=alpha,alpha-live. Use either value alone to select one notice type. Launch programs such as launchpool and hodler_airdrop have their own market types.
For wallet updates, use market_type=wallet-asset,wallet-contract,wallet-tradable, or select one of those values. These are distinct from spot listings and Alpha notices.
The market-type filter includes both listings and delistings for that market. Check parser.classification.event in your client to select listing or delisting. The example below accepts spot listings.
Node.js: Binance spot listings
Install ws, set NLF_API_KEY to your key, and save the example as binance-listings.cjs. Run node binance-listings.cjs. Change market_type=spot in the URL to one of the types above for a different feed.
This example uses the FREE endpoint with a 3-second configured delay. For STARTER or PRO, use a regional host from the connection reference.
// npm install ws
const WebSocket = require("ws");
if (!process.env.NLF_API_KEY) {
throw new Error("Set NLF_API_KEY before starting the client.");
}
const ws = new WebSocket(
"wss://ws.newlistings.pro/v2/full?exchange=binance&market_type=spot",
{ headers: {
authorization: `Bearer ${process.env.NLF_API_KEY}`
} }
);
ws.on("message", raw => {
const message = JSON.parse(raw.toString());
if (message.type === "error") {
console.error(message.code, message.message);
return;
}
const classification = message.parser?.classification;
if (classification?.event !== "listing") return;
for (const asset of message.parser.assets) {
console.log({
id: message.id,
symbol: asset.symbol,
type: classification.type,
display: message.parser.display,
url: message.url
});
}
});
ws.on("error", error => console.error(error.message));Fields to use in your client
Read parser.assets for the tickers. A notice can contain several assets, so loop through the array. Use content.title for the announcement title when present, parser.display for the parsed summary and url for the source notice.
parser.classification.event tells you whether it is a listing or delisting. parser.classification.type tells you the market or product. parser.display is the readable summary.
parser.assets[].symbol is the announced ticker. Binance Spot uses symbol for a base/quote trading pair. The 牛来 example above contains one ticker, while Binance announced separate 牛来/USDT and 牛来/USDC markets. Binance's GET /api/v3/exchangeInfo returns each pair's symbol, baseAsset, quoteAsset and status. Use those fields to identify the pair your client follows.
The same 牛来 notice scheduled spot trading for 14:30 UTC on 9 September 2026 and said the token could already trade on Binance Alpha. A listing / spot classification describes the spot announcement; it does not confirm that spot trading has opened.
Keep reading
- Exchanges
- The fastest Upbit listing WebSocket for bots and snipers
- Bithumb listing WebSocket API for spot listings and delistings
- Robinhood asset additions and spot listings
- Coinbase new listings and roadmap alerts over WebSocket
- WebSocket performance
- Measure listing WebSocket delivery from your bot server
- Onchain data for crypto listing and sniping bots
- The fastest crypto listing WebSocket, measured from your server
- The fastest listing feed for crypto sniper bots
- Listing announcement WebSockets and market-data WebSockets
- Crypto listing alerts on Telegram and WebSocket
- Receive crypto listing alerts in Node.js
- New Listings Feed vs other listing services
- Crypto alerts for listings, prices, whales and news
- The fastest Binance Alpha listing WebSocket for bots and snipers