Active symbol cautions
GET/api/v1/cex/symbol/cautions
Return currently-active caution/warning/danger flagged symbols. Bithumb provides an expiry (end_at); other exchanges are open-ended until the next collector poll clears them.
Request
Query Parameters
exchange string
Exchange filter (comma-separated, empty = all)
market string
Possible values: [spot, futures]
spot or futures
min_level string
Possible values: [caution, warning, danger]
Minimum severity
active_only boolean
Exclude rows whose end_at is in the past (default true)
limit integer
Page size (default 500, max 5000)
page integer
Page number (1-based)
Responses
- 200
- 400
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
b string
caution_level string
caution | warning | danger
e string
end_at integer
ms, 0 = indefinite
m string
q string
reasons string[]
[
{
"b": "string",
"caution_level": "string",
"e": "string",
"end_at": 0,
"m": "string",
"q": "string",
"reasons": [
"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...