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
| Name | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
page | integer | no | 1 | Page number (default: 1) | 1 |
limit | integer | no | 10 | Page size (default: 10) | 10 |
sort | string | no | desc | Specifies sort (asc, desc) (default: desc) | "desc" |
key | string | no | timestamp | Specifies key to sort by (exchange, category, title, timestamp) (default: timestamp) | "timestamp" |
exchange | string | no | Specifies exchange(s), separated by , | "..." | |
category | string | no | Specifies 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"
}
}
}