Zum Inhalt springen
GET /v1/catalogs

Announcement categories

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/binanceannouncements-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}