Symbol metadata
GET/api/v1/cex/symbol/metadata
Fetch per-symbol trading status, caution flags, tags and timing metadata collected by tfsymbolmeta.
Request
Query Parameters
exchange string
Comma-separated exchange names (empty = all)
market string
Possible values: [spot, futures]
spot or futures (empty = both)
base string
Base asset filter
quote string
Quote asset filter
status string
trading_status filter (repeatable, comma-separated)
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
caution_end_at integer
ms
caution_level string
"", caution, warning, danger
caution_reasons string[]
delisting_at integer
e string
listed_at integer
m string
"spot" | "futures"
q string
status string
trading|pre_listing|halt|close_only|delisting|delisted
tags string[]
[
{
"b": "string",
"caution_end_at": 0,
"caution_level": "string",
"caution_reasons": [
"string"
],
"delisting_at": 0,
"e": "string",
"listed_at": 0,
"m": "string",
"q": "string",
"status": "string",
"tags": [
"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...