Your first alert in under a minute
Get a key
pc_Kr_Ohz...
Check your key
curl -H "Authorization: Bearer YOUR_KEY" \ https://polychadsbot.xyz/api/v1/me
Pull latest alerts
curl -H "Authorization: Bearer YOUR_KEY" \ "https://polychadsbot.xyz/api/v1/alerts/latest?limit=5"
Go real-time (Pro+)
const ws = new WebSocket( "wss://polychadsbot.xyz/ws/alerts?api_key=YOUR_KEY" ); ws.onmessage = (e) => { const msg = JSON.parse(e.data); if (msg.type === "alert") { console.log(msg.data.event_title); console.log(`${msg.data.side} ${msg.data.outcome} — $${msg.data.usdc_value}`); } }; // Keep-alive every 25s setInterval(() => { if (ws.readyState === WebSocket.OPEN) ws.send("ping"); }, 25000);