Delisting schedule
GET/api/v1/cex/symbol/delistings
Return symbols with a known delisting_at timestamp or trading_status in {delisting, delisted}. Filter by time window to get upcoming delistings.
Request
Query Parameters
exchange string
Exchange filter (comma-separated)
market string
Possible values: [spot, futures]
spot or futures
from_ms integer
Lower bound for delisting_at (ms epoch, default = now)
to_ms integer
Upper bound for delisting_at (ms epoch, default = now+30 days)
include_past boolean
Include already-delisted rows (default false)
limit integer
Page size (default 200, max 2000)
page integer
Page number (1-based)
Responses
- 200
- 400
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
b string
delisting_at integer
ms (scheduled or past)
e string
listed_at integer
ms
m string
q string
status string
delisting | delisted
[
{
"b": "string",
"delisting_at": 0,
"e": "string",
"listed_at": 0,
"m": "string",
"q": "string",
"status": "string"
}
]
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
error string
error specifies the error message
{
"error": "string"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
error string
error specifies the error message
{
"error": "string"
}
Loading...