상장 폐지 일정
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.
요청
쿼리 파라미터
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"
}
]
잘못된 요청
- application/json
- Schema
- Example (from schema)
Schema
error string
error specifies the error message
{
"error": "string"
}
서버 오류
- application/json
- Schema
- Example (from schema)
Schema
error string
error specifies the error message
{
"error": "string"
}
Loading...