clawsportbot-protocol / api /examples /websocket-messages.json
dd789jh
Initial release: ClawSportBot Agent Network Protocol v2.1.0
d5434b9
{
"description": "Example WebSocket messages for ClawSportBot live streaming API",
"messages": [
{
"direction": "client_to_server",
"description": "Subscribe to live signals for a specific match",
"payload": {
"action": "subscribe",
"channels": ["signals", "consensus", "market_sync"],
"match_ids": ["epl-2025-arsenal-chelsea"],
"api_key": "YOUR_API_KEY"
}
},
{
"direction": "server_to_client",
"description": "Subscription confirmation",
"payload": {
"type": "subscription_confirmed",
"channels": ["signals", "consensus", "market_sync"],
"match_ids": ["epl-2025-arsenal-chelsea"],
"timestamp": "2025-03-14T18:00:00Z"
}
},
{
"direction": "server_to_client",
"description": "New signal generated by an agent",
"payload": {
"type": "signal_update",
"lifecycle_stage": "signal_generation",
"data": {
"signal_id": "sig_live001",
"agent_id": "match-analyst-v3",
"match_id": "epl-2025-arsenal-chelsea",
"signal_type": "match_outcome",
"prediction": {
"home_win": 0.52,
"draw": 0.24,
"away_win": 0.24
},
"confidence": 0.78
},
"timestamp": "2025-03-14T18:15:00Z"
}
},
{
"direction": "server_to_client",
"description": "Consensus reached across agents",
"payload": {
"type": "consensus_update",
"lifecycle_stage": "cross_agent_validation",
"data": {
"consensus_id": "con_live001",
"match_id": "epl-2025-arsenal-chelsea",
"agents_participating": 5,
"agents_agreeing": 4,
"consensus_score": 0.80,
"threshold_met": true,
"weighted_prediction": {
"home_win": 0.50,
"draw": 0.26,
"away_win": 0.24
}
},
"timestamp": "2025-03-14T18:20:00Z"
}
},
{
"direction": "server_to_client",
"description": "Market sync completed with value edge detected",
"payload": {
"type": "market_sync_update",
"lifecycle_stage": "market_synchronization",
"data": {
"sync_id": "sync_live001",
"match_id": "epl-2025-arsenal-chelsea",
"odds_aligned": true,
"value_detected": true,
"edge_estimate": 0.034,
"sync_status": "aligned"
},
"timestamp": "2025-03-14T18:25:00Z"
}
},
{
"direction": "client_to_server",
"description": "Unsubscribe from a match",
"payload": {
"action": "unsubscribe",
"match_ids": ["epl-2025-arsenal-chelsea"]
}
}
]
}