/v1/catalogs
Announcement 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/catalogs" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/binanceannouncements-api/v1/catalogs", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/binanceannouncements-api/v1/catalogs");
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/catalogs",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "The Binance announcement categories — each with its numeric catalog id and name. Pass a catalog_id to /v1/announcements to read that category. The feed also has other catalog ids beyond this headline set.",
"count": 6,
"source": "Binance",
"catalogs": [
{
"id": 48,
"name": "New Cryptocurrency Listing"
},
{
"id": 161,
"name": "Latest Binance News"
},
{
"id": 157,
"name": "New Fiat Listings"
},
{
"id": 93,
"name": "Delisting"
},
{
"id": 49,
"name": "Latest Activities"
},
{
"id": 51,
"name": "API Updates"
}
]
},
"meta": {
"timestamp": "2026-06-14T17:03:39.971Z",
"request_id": "37741559-83bf-46ed-bfc9-9249465392de"
},
"status": "ok",
"message": "Catalogs retrieved successfully",
"success": true
}