본문으로 건너뛰기

cex_symbol_metadata

Per-symbol trading status, caution flags, tags, and timing metadata. The foundational symbol info table — use to enrich other data with symbol context.

Usage hints:

  • Filter by exchange, market, base, quote for targeted lookups
  • Returns trading_status, caution flags, tags, and listing timing
  • Useful when building dashboards that need full symbol context

REST endpoint

GET /api/v1/cex/symbol/metadata — see REST reference.

Parameters

NameTypeRequiredDefaultDescriptionExample
exchangestringnoComma-separated exchange names (empty = all)"..."
marketstringnospot or futures (empty = both) (spot, futures)"..."
basestringnoBase asset filter"..."
quotestringnoQuote asset filter"..."
statusstringnotrading_status filter (repeatable, comma-separated)"..."
limitintegernoPage size (default 200, max 2000)0
pageintegernoPage number (1-based)0

Example invocation

JSON-RPC tools/call payload:

{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "cex_symbol_metadata",
"arguments": {}
}
}