๐Ÿ‹ Whales Bet Signal Stream v1.1

Real-time + historical signals from the Whales Bet weather-market trading bot.

Quick start

curl https://signals.whales.bet/api/health

Docs

Live data

WebSocket

const ws = new WebSocket("wss://signals.whales.bet/ws");
ws.onmessage = e => console.log(JSON.parse(e.data));

Event types: signal_published ยท trade_executed ยท position_resolved ยท forecast_update ยท cycle_complete

Generate an SDK

npx @openapitools/openapi-generator-cli generate \
  -i https://signals.whales.bet/openapi.json \
  -g typescript-fetch \
  -o ./whales-bet-sdk

See the full integration guide on GitHub or DM the operator for the INTEGRATION.md doc.