/v1/latest
Merged latest announcements across categories
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/binanceannouncements-api/v1/latest" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/binanceannouncements-api/v1/latest", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/binanceannouncements-api/v1/latest");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/binanceannouncements-api/v1/latest",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "The merged latest Binance announcements across the key categories — new listings, news, delistings and activities — newest first, each tagged with its category. The single feed of everything happening on Binance right now.",
"count": 25,
"source": "Binance",
"announcements": [
{
"id": 276964,
"url": "https://www.binance.com/en/support/announcement/191cb96109f24c5c85362631a55a45d3",
"title": "Binance Exchange Adds bStocks Tokenized Securities SpaceX (SPCXB) on Binance Spot - 2026-06-12",
"category": "New Cryptocurrency Listing",
"catalog_id": 48,
"published_at": "2026-06-12T16:00:00.917Z",
"release_date": 1781280000917
},
{
"id": 276961,
"url": "https://www.binance.com/en/support/announcement/8ad8bd3442964b3c90e67ee3de96ec0e",
"title": "Binance Futures Will Convert SPCXUSDT Pre-IPO Perp to Standard USDⓈ-Margined TradFi Perp (2026-06-12)",
"category": "Latest Activities",
"catalog_id": 49,
"published_at": "2026-06-12T15:53:56.387Z",
"release_date": 1781279636387
},
{
"id": 276960,
"url": "https://www.binance.com/en/support/announcement/73745bb4cc9d49528cfb2b3f2b354f0f",
"title": "Important Notice: Binance Wallet SPCXx IPO Campaign Cancellation and Next Steps",
"category": "Latest Activities",
"catalog_id": 49,
"published_at": "2026-06-12T15:48:28.824Z",
"release_date": 1781279308824
},
{
"id": 276956,
"url": "https://www.binance.com/en/support/announcement/2ad1574014174cf3aabc0c6d5847ed5a",
"title": "Extension to the USD1 Airdrop Campaign (2026-06-12)",
"category": "Delisting",
"catalog_id": 93,
"published_at": "2026-06-12T13:54:50.356Z",
"release_date": 1781272490356
},
{
"id": 276928,
"url": "https://www.binance.com/en/support/announcement/d4ffb99dbaae432fa096523a6138c709",
"title": "Binance Alpha Trading Competition: Trade Perle (PRL) and Share $200K Worth of Rewards (2026-06-12)",
"category": "Delisting",
"catalog_id": 93,
"published_at": "2026-06-12T11:00:16.126Z",
"release_date": 1781262016126
},
{
"id": 276904,
"url": "https://www.binance.com/en/support/announcement/fb059dad6e4f47178e054fe47cc3ca52",
"title": "Binance Traders League Season 3: Trade NIGHT to Share Up to 400,000 USDC Token Vouchers",
"category": "Delisting",
"cata
…