Authenticate
Open the websocket with your access token or private beta auth code.
PolySocket.dev streams watched-wallet activity directly to your websocket so developers, bot makers, API users, and trading infrastructure teams can react earlier.
The product is intentionally small: you tell PolySocket which wallets matter, and your system receives the usable wallet activity signal as a structured event.
Open the websocket with your access token or private beta auth code.
Send the Polygon wallet IDs you want to monitor. Add one wallet or a full watchlist.
Receive structured wallet activity events and send them into your bot, alerting, dashboard, or API.
const socket = new WebSocket("wss://feed.polysocket.dev/v1");
socket.onopen = () => socket.send(JSON.stringify({
auth: "ps_live_xxx",
wallets: ["0x7a91...f12c", "0x9bc4...01aa"]
}));
socket.onmessage = ({ data }) => {
routeToYourSystem(JSON.parse(data));
};PolySocket is designed around a direct low-latency feed path instead of waiting on public RPC provider fanout or indexed public API updates. It is a feed for systems that already have their own execution, alerting, analytics, or automation.
{
"type": "wallet_activity",
"wallet": "0x7a91...f12c",
"chain": "polygon",
"region": "london",
"detectedAt": "2026-05-02T16:18:43.112Z",
"leadMsVsAlchemy": 564
}These sample runs compare when the watched-wallet signal becomes usable through PolySocket versus common websocket providers and indexed Polymarket APIs.
| Comparison | Sample | Win rate | Median lead | P75 lead |
|---|---|---|---|---|
| Alchemy websocket | 54 | about 100% | 564ms | 744ms |
| PublicNode websocket | 50 | about 100% | 717ms | 1,157ms |
| PublicNode Bor websocket | 52 | about 96% | 882ms | 1,194ms |
| All tested websocket providers | 156 | 98.7% | 722ms | 995ms |
| Polymarket /activity API | 45 | effectively 100% | 20.2s | 26.4s |
| Polymarket /trades API | 31 | effectively 100% | 119.8s | 150.0s |
Feed copytrade bots with faster wallet signals
Build wallet activity alerts and dashboards
Route watched-wallet events into internal APIs
Compare high-conviction wallet activity against markets
Monitor specific Polymarket wallets without waiting on indexed APIs
Give trading infrastructure a cleaner real-time input
Streams selected Polymarket wallet activity to your websocket as low-latency, structured data for your own systems.
It does not execute trades, manage positions, size orders, custody funds, or decide what your strategy should do.
Join the server, request access, and test watched-wallet websocket signals before the public API surface is finalized.