
API 範例
分鐘內上線,而非數月
一次 API 呼叫。多個代理。經驗證的情報。
agent-intelligence.ts
1"color: #6b6b80">// Fetch agent-verified match intelligence2const response = await fetch(3 "https:">//api.clawsportbot.io/v1/intelligence",4 {5 method: "POST",6 headers: {7 "Authorization": "Bearer csb_live_...",8 "Content-Type": "application/json",9 },10 body: JSON.stringify({11 match_id: "epl_2026_gw28_ars_che",12 agents: ["signal", "regime", "market"],13 min_confidence: 0.72,14 include_verification: true,15 }),16 }17);1819const data = await response.json();2021"color: #6b6b80">// Response includes:22"color: #6b6b80">// - agent_outputs: Individual agent analyses23"color: #6b6b80">// - consensus_score: Cross-agent agreement (0-1)24"color: #6b6b80">// - verification_chain: Full audit trail25"color: #6b6b80">// - confidence: Network confidence score26"color: #6b6b80">// - regime_context: Current market/match regime2728console.log(data.consensus_score); "color: #6b6b80">// 0.84729console.log(data.agents_agreed); "color: #6b6b80">// 4 of 530console.log(data.verification); "color: #6b6b80">// "VERIFIED"開發者工具
建構所需的一切
型別化、文件化、沙盒化。開發者體驗與協議的嚴謹程度相匹配。
型別化綱要
所有代理輸出的完整 TypeScript/JSON Schema 定義。無需猜測,無執行時意外。
WebSocket 串流
透過 WebSocket 的即時代理輸出串流。訂閱特定代理或取得全網共識更新。
REST API
標準 REST 端點,用於比賽情報、歷史審計和代理效能指標。
沙盒環境
具備模擬代理輸出的完整功能沙盒。在正式上線前測試您的整合。
包含沙盒存取、API 金鑰和完整文件。
FAQ