botindex_arb_scanner
Scan prediction markets and sportsbooks to identify arbitrage opportunities across platforms using verified on-chain and off-chain data.
Instructions
Cross-platform prediction market and sportsbook arbitrage scanner. $0.05
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:213-229 (handler)The tool 'botindex_arb_scanner' is dynamically registered at runtime based on the API catalog fetched from the server. The actual execution logic is handled by this dynamic handler.
server.tool( tool.name, tool.description, zodSchema, async (args: Record<string, any>) => { const params: Record<string, string> = {}; if (tool.params) { for (const p of tool.params) { if (args[p.name] !== undefined) { params[p.name] = String(args[p.name]); } } } const data = await fetchBotindex(tool.path, params); return { content: [{ type: 'text', text: toToolText(data) }] }; }, );