# Agent Data Toolkit – Crypto Price Betting Edge Analyzer

> Agent Data Toolkit – Crypto Price Betting Edge Analyzer is a paid API for AI agents from agent-data-toolkit.onrender.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Runs a 3-analyst AI council (YES advocate, NO advocate, quant) that debates live market features in parallel to return a probability, confidence score, and key reasons for a crypto price question.

## Facts

- Endpoint: POST https://agent-data-toolkit.onrender.com/edge
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-data-toolkit-crypto-price-betting-edge-analyzer-8e4dff13
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_op5INKS9iiyVdKCcD-yr6

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability agent-data-toolkit-crypto-price-betting-edge-analyzer-8e4dff13 -d '<json body>'
```

Example prompt: Give me a betting edge on whether Bitcoin will close above $105,000 by end of this Friday — run the full YES/NO/quant analyst council debate and tell me the probability, confidence, and top reasons.

## When to prefer this

Use this endpoint when you need a structured probabilistic opinion on a yes/no crypto price question, especially for prediction market betting or hedging decisions. It goes beyond raw indicators by synthesizing a multi-perspective debate with explicit confidence scoring. Prefer it over raw market data endpoints when you want an interpretive signal rather than raw numbers.

## Known failure modes

- Unsupported or misspelled asset symbol returns an error
- Ambiguous or malformed price question may produce low-confidence output
- Live market data unavailable from Binance causes computation failure
- Extremely short timeframes (seconds/minutes) may produce unreliable signals
- Payment not processed results in 402 response blocking execution

## How this service works

Betting edge for a crypto price question: a 3-analyst AI council (YES advocate, NO advocate, quant) debates live market features in parallel and a judge returns probability, confidence and key reasons. Signals, not certainties.

## Output

Returns a probability estimate (0–1) that the crypto price condition will be met, a confidence score reflecting analyst agreement, and key reasons surfaced from the multi-analyst debate including signals from live market features like RSI, SMAs, momentum, and volatility.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "method"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "question"
     ],
     "properties": {
      "question": {
       "type": "string",
       "description": "string, the betting question (required)"
      },
      "horizon_hours": {
       "type": "integer",
       "description": "integer, optional forecast horizon"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "required": [
      "ok",
      "question"
     ],
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "symbol": {
       "type": "string"
      },
      "worker": {
       "type": "string"
      },
      "reasons": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "features": {},
      "question": {
       "type": "string"
      },
      "confidence": {
       "type": "number"
      },
      "disclaimer": {
       "type": "string"
      },
      "latency_ms": {
       "type": "integer"
      },
      "probability": {
       "type": "number"
      },
      "horizon_hours": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-data-toolkit-crypto-price-betting-edge-analyzer-8e4dff13/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-data-toolkit.onrender.com](https://www.zero.xyz/host/agent-data-toolkit.onrender.com/llms.txt)
