Skip to main content

cex_announcements

Get latest announcements from centralized exchanges including listings, delistings, notices, and user events. Use to monitor exchange news and token listing/delisting events. Combine with cex_token_updates for comprehensive token event tracking.

Usage hints:

  • Filter by category (notice, listing, delisting, user_events) for specific event types
  • Use with cex_token_updates for complete token lifecycle tracking
  • Sort by timestamp desc to get most recent announcements first

REST endpoint

GET /api/v1/cex/announcements — see REST reference.

Parameters

NameTypeRequiredDefaultDescriptionExample
pageintegerno1Page number (default: 1)1
limitintegerno10Page size (default: 10)10
sortstringnodescSpecifies sort (asc, desc) (default: desc)"desc"
keystringnotimestampSpecifies key to sort by (exchange, category, title, timestamp) (default: timestamp)"timestamp"
exchangestringnoSpecifies exchange(s), separated by ,"..."
categorystringnoSpecifies category(s), separated by , (notice, listing, delisting, user_events) (default: )"..."

Example invocation

JSON-RPC tools/call payload:

{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "cex_announcements",
"arguments": {
"page": 1,
"limit": 10,
"sort": "desc",
"key": "timestamp"
}
}
}