{
"type": "subscribe",
"channel": "quotes",
"account_id": "70f60784-20f1-45ba-9a04-8e01c0b810c3",
"symbols": [
"EURUSD",
"GBPUSD"
],
"interval_ms": 500
}{
"type": "<string>",
"account_id": "<string>",
"data": {
"ask": 123,
"bid": 123,
"last": 123,
"symbol": "<string>",
"time": "<string>",
"volume": 123
}
}Combined feed that delivers quotes, orders, and profit updates in a single subscription. Useful when you want all event types without multiple subscribe calls.
Channel name: aggregate
Required: account_id, symbols (for quote data)
{
"type": "subscribe",
"channel": "quotes",
"account_id": "70f60784-20f1-45ba-9a04-8e01c0b810c3",
"symbols": [
"EURUSD",
"GBPUSD"
],
"interval_ms": 500
}{
"type": "<string>",
"account_id": "<string>",
"data": {
"ask": 123,
"bid": 123,
"last": 123,
"symbol": "<string>",
"time": "<string>",
"volume": 123
}
}API key passed as query parameter: wss://api.easierprop.com/ws?apiKey=sk_your_key
Subscribe to a channel
Real-time bid/ask update (data wrapper contains the upstream quote object)