Skip to main content

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

NameTypeRequiredDefaultDescriptionExample
exchangestringnoExchange filter (comma-separated)"..."
marketstringnospot or futures (spot, futures)"..."
from_msintegernoLower bound for delisting_at (ms epoch, default = now)0
to_msintegernoUpper bound for delisting_at (ms epoch, default = now+30 days)0
include_pastbooleannoInclude already-delisted rows (default false)false
limitintegernoPage size (default 200, max 2000)0
pageintegernoPage 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": {}
}
}