상장 폐지 일정
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
거래소 필터 (쉼표로 구분)
market string
Possible values: [spot, futures]
spot 또는 futures
from_ms integer
delisting_at 하한 (ms epoch, 기본 now)
to_ms integer
delisting_at 상한 (ms epoch, 기본 now+30일)
include_past boolean
이미 상장폐지된 항목 포함 (기본 false)
limit integer
페이지 크기 (기본 200, 최대 2000)
page integer
페이지 번호 (1부터 시작)
Responses
- 200
- 400
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
b string
delisting_at integer
ms (예정 또는 과거)
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는 에러 메시지를 나타냅니다
{
"error": "string"
}
서버 오류
- application/json
- Schema
- Example (from schema)
Schema
error string
error는 에러 메시지를 나타냅니다
{
"error": "string"
}
Loading...