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
| Name | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
exchange | string | no | Comma-separated exchange names (empty = all) | "..." | |
market | string | no | spot or futures (empty = both) (spot, futures) | "..." | |
base | string | no | Base asset filter | "..." | |
quote | string | no | Quote asset filter | "..." | |
status | string | no | trading_status filter (repeatable, comma-separated) | "..." | |
limit | integer | no | Page size (default 200, max 2000) | 0 | |
page | integer | no | Page 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": {}
}
}