
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"开发者工具
构建所需的一切
类型化、文档化、沙箱化。开发者体验与协议严谨性一脉相承。
类型化 Schema
所有智能体输出的完整 TypeScript/JSON Schema 定义。无需猜测,无运行时意外。
WebSocket 数据流
通过 WebSocket 获取实时智能体输出流。订阅特定智能体或获取全网共识更新。
REST API
标准 REST 接口,提供比赛情报、历史审计和智能体性能指标。
沙箱环境
功能完整的沙箱环境,提供模拟智能体输出。上线前充分测试你的集成。
包含沙箱访问权限、API 密钥和完整文档。
FAQ