Data Feeds
Watch Ticker (WebSocket)
Stream live ticker updates for a symbol via WebSocket.
Transport: WebSocket
| Environment | URL |
|---|---|
| Hosted API | wss://api.pmxt.dev/ws?apiKey=YOUR_KEY |
Subscribe:
{ "id": "btc-stream", "action": "subscribe", "method": "watchTicker", "args": ["BTC/USDT"], "feed": "binance" }
Server response:
{ "event": "data", "id": "btc-stream", "method": "watchTicker", "symbol": "BTC/USDT", "source": "binance", "data": { "symbol": "BTC/USDT", "last": 76949.16, "timestamp": 1716148800000, ... } }
Unsubscribe:
{ "id": "btc-stream", "action": "unsubscribe" }
Currently supports Binance feeds only. Tickers stream as they arrive from the Binance trade relay.
GET
Documentation Index
Fetch the complete documentation index at: https://pmxt-feat-series-api.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Required when calling the hosted API directly (curl, requests, fetch). SDK users pass credentials via constructor params instead.
Path Parameters
The data feed provider.
Available options:
binance, chainlink Query Parameters
Trading pair to stream (e.g. BTC/USDT)

