Subscribe to Binance Spot public market streams through UXC raw WebSocket support for trades, book ticker, depth, and ticker events with stream-specific guardrails.
Use this skill to run Binance Spot public market streams through uxc subscribe raw WebSocket mode.
Reuse the uxc skill for generic runtime behavior, sink handling, and event-envelope parsing.
uxc is installed and available in PATH.This skill covers Binance Spot public market streams such as:
This skill does not cover:
Binance Spot public market streams use raw WebSocket endpoints.
wss://stream.binance.com:443wss://stream.binance.com:443/ws/<streamName>wss://stream.binance.com:443/stream?streams=<stream1>/<stream2>Important:
{"stream":"...","data":{...}}uxc subscribe start:
uxc subscribe start wss://stream.binance.com:443/ws/btcusdt@trade --transport websocket --sink file:$HOME/.uxc/subscriptions/binance-btcusdt-trade.ndjsontail -n 5 $HOME/.uxc/subscriptions/binance-btcusdt-trade.ndjsonuxc subscribe listuxc subscribe status <job_id>uxc subscribe stop <job_id>btcusdt@tradebtcusdt@aggTradebtcusdt@bookTickerbtcusdt@miniTickerbtcusdt@tickerbtcusdt@depthThe following live raw WebSocket flow was validated successfully through uxc:
wss://stream.binance.com:443/ws/btcusdt@trade--transport websocketopendata events with Binance trade payloadsclosed after stopObserved event fields included:
e: "trade"s: "BTCUSDT"pqt--text.event_kind, data, meta.wss://stream.binance.com:443 as the default public stream host; it validated more reliably than :9443 in recent runtime checks.stream wrappers.uxc subscribe start ... --transport websocket is the intended execution path for this skill; uxc link is not the main interface because stream identity is encoded directly in the endpoint path.references/usage-patterns.md