# Vedetta Consensus — Analyst vs. Live Price Divergence Verdict

> Vedetta Consensus — Analyst vs. Live Price Divergence Verdict is a paid API for AI agents from vedetta.dethboy.com, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-15).

Compares analyst read signals against live asset price to produce a divergence verdict with a confidence score for a given crypto asset ticker.

## Facts

- Endpoint: GET https://vedetta.dethboy.com/v1/consensus
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vedetta-consensus-analyst-vs-live-price-divergence-verdict-23ebe694
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_H3sIwFtz1p6Wko6dLI-iE

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 vedetta-consensus-analyst-vs-live-price-divergence-verdict-23ebe694
```

Example prompt: Check the Vedetta consensus for BTC — I want to know if analyst signals are diverging from the live price right now and how confident the verdict is.

## When to prefer this

Use this endpoint when you need a synthesized, confidence-scored verdict on whether analyst consensus is diverging from real-time price action for a specific crypto asset — not raw analyst posts or raw price data alone. Best when you want a single actionable signal rather than streaming feed data.

## Known failure modes

- Missing required 'asset' query parameter returns an error
- Unknown or unsupported ticker symbol returns no data or error
- Live price feed temporarily unavailable may degrade result quality
- Payment not processed (x402) blocks the request entirely
- Service cold-start or downtime returns a 5xx error

## How this service works

Sentiment-vs-price divergence verdict for any crypto asset (BTC, ETH, SOL...): bullish/bearish/neutral verdict with confidence, live price, crowd sentiment %, prediction-market odds and narrative. The contrarian trading signal raw data APIs don't sell. Stale cache triggers a live analyst refresh inside the call (10-90s). Descriptive research, not financial advice.

## Output

Returns a divergence verdict indicating whether analyst reads are aligned or misaligned with the current live price for the specified asset, along with a confidence score quantifying the strength of that divergence signal.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "asset"
     ],
     "properties": {
      "asset": {
       "type": "string",
       "description": "Ticker symbol, e.g. BTC, ETH, SOL, AI"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "asset": {
       "type": "string"
      },
      "stale": {
       "type": "boolean"
      },
      "verdict": {
       "type": "string"
      },
      "narrative": {
       "type": "string"
      },
      "price_usd": {
       "type": "number"
      },
      "confidence": {
       "type": "number"
      },
      "disclaimer": {
       "type": "string"
      },
      "divergence": {},
      "social_score": {
       "type": "number"
      },
      "analyst_stance": {
       "type": "string"
      },
      "signal_age_minutes": {
       "type": "number"
      },
      "prediction_odds_pct": {
       "type": "integer"
      },
      "price_change_24h_pct": {
       "type": "number"
      },
      "analyst_sentiment_pct": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asset": "BTC",
  "stale": false,
  "verdict": "bullish",
  "narrative": "Lead paragraph of the analyst's read.",
  "price_usd": 65175,
  "confidence": 0.85,
  "disclaimer": "Descriptive market intelligence, not financial advice.",
  "divergence": null,
  "social_score": 65.5,
  "analyst_stance": "bullish",
  "signal_age_minutes": 4.5,
  "prediction_odds_pct": 97,
  "price_change_24h_pct": 1.1,
  "analyst_sentiment_pct": 70
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vedetta-consensus-analyst-vs-live-price-divergence-verdict-23ebe694/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vedetta.dethboy.com](https://www.zero.xyz/host/vedetta.dethboy.com/llms.txt)
