cex_token_updates
Get latest token listing and delisting updates from centralized exchanges. Shows which tokens are being listed or delisted and on which exchanges.
Usage hints:
- Filter by type (listed/delisted) for specific events
- Combine with cex_announcements for full context on token events
- New listings often create short-term trading opportunities
REST endpoint
GET /api/v1/cex/token/updates — see REST reference.
Parameters
| Name | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
page | string | no | 1 | Specifies page (default: 1) | "1" |
limit | string | no | 100 | Specifies limit (default: 100) | "100" |
type | string | no | Specifies type of token update (listed, delisted) | "..." |
Example invocation
JSON-RPC tools/call payload:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "cex_token_updates",
"arguments": {
"page": "1",
"limit": "100"
}
}
}