cex_symbol_delistings
Symbols with known delisting_at timestamps or trading_status in {delisting, delisted}. Essential for avoiding positions in tokens about to be delisted, which often see sharp price drops and liquidity collapse.
Usage hints:
- Use from_ms/to_ms time window filters for upcoming delistings
- Set include_past=true to see historical delistings
- Check this before opening positions in newly listed or low-cap tokens
REST endpoint
GET /api/v1/cex/symbol/delistings — see REST reference.
Parameters
| Name | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
exchange | string | no | Exchange filter (comma-separated) | "..." | |
market | string | no | spot or futures (spot, futures) | "..." | |
from_ms | integer | no | Lower bound for delisting_at (ms epoch, default = now) | 0 | |
to_ms | integer | no | Upper bound for delisting_at (ms epoch, default = now+30 days) | 0 | |
include_past | boolean | no | Include already-delisted rows (default false) | false | |
limit | integer | no | Page size (default 200, max 2000) | 0 | |
page | integer | no | Page number (1-based) | 0 |
Example invocation
JSON-RPC tools/call payload:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "cex_symbol_delistings",
"arguments": {}
}
}