/v1/meta
Service metadata
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/binanceannouncements-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/binanceannouncements-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/binanceannouncements-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"sample": {
"latest_listing": "Binance Exchange Adds bStocks Tokenized Securities SpaceX (SPCXB) on Binance Spot - 2026-06-12"
},
"source": "Binance public CMS announcement API (binance.com/bapi), keyless",
"service": "binanceannouncements-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/latest": "Merged latest announcements across key categories (limit).",
"GET /v1/catalogs": "The announcement categories (id → name).",
"GET /v1/listings": "The latest new cryptocurrency listings on Binance (limit).",
"GET /v1/announcements": "Announcements in any category (catalog_id, limit)."
},
"description": "Live Binance announcements with no key: the latest new cryptocurrency listings, the announcements in any category (listings, delistings, news, activities), and the merged latest stream across categories — each with title, category, publish time and the announcement URL. The listing-alert / exchange-news layer for trading bots, alpha tools and news feeds. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T17:03:40.067Z",
"request_id": "d32d3fe1-759b-48c6-b125-9868a0d6022c"
},
"status": "ok",
"message": "Meta",
"success": true
}