# Vedetta US Equity Sentiment-vs-Price Divergence

> Vedetta US Equity Sentiment-vs-Price Divergence 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-14).

Returns a live analyst verdict on a US stock ticker including social sentiment %, dominant narrative, prediction-market context, and any divergence from current price action.

## Facts

- Endpoint: GET https://vedetta.dethboy.com/v1/equity
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vedetta-us-equity-sentiment-vs-price-divergence-0d11cacb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zupXeglrJcFrmay-oTYtv

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-us-equity-sentiment-vs-price-divergence-0d11cacb
```

Example prompt: What's the sentiment-vs-price divergence verdict on NVDA right now — is social sentiment running ahead of or behind the actual price action, and what's the dominant narrative driving it?

## When to prefer this

Choose this endpoint when you specifically need a combined sentiment-vs-price divergence verdict for a US stock ticker (e.g. NVDA, TSLA, AAPL), including social sentiment %, dominant narrative, and prediction-market context. Prefer this over the crypto divergence endpoint for US equities, over the macro endpoint for individual stocks (not indices/rates/commodities), and over raw filings or news endpoints when you want an integrated analyst-style read rather than raw data.

## Known failure modes

- Invalid or unsupported US ticker symbol returns an error or empty result
- Ticker not covered by Vedetta's tracked asset universe may return no data
- Payment failure or insufficient USDC balance blocks the request (x402 payment required)
- Stale or unavailable social data may result in degraded sentiment coverage
- Non-US equities or crypto tickers should use sibling endpoints, not this one

## How this service works

Sentiment-vs-price divergence read on a US STOCK ticker (?asset=NVDA): social sentiment %, dominant narrative, prediction-market context and any divergence from price action — a live analyst verdict on equities, not raw filings data. Descriptive research, not financial advice.

## Output

A structured analyst verdict containing: social sentiment percentage (bullish/bearish/neutral), the dominant narrative driving social discussion, prediction-market context for the ticker, and an explicit divergence assessment comparing sentiment to current price action — framed as descriptive research, not financial advice.

## 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": "US stock ticker, e.g. NVDA, TSLA"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "asset": {
       "type": "string"
      },
      "stance": {
       "type": "string"
      },
      "quality": {
       "type": "string"
      },
      "summary": {
       "type": "string"
      },
      "disclaimer": {
       "type": "string"
      },
      "divergence": {
       "type": "boolean"
      },
      "sentiment_pct": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asset": "NVDA",
  "stance": "bullish",
  "quality": "structured",
  "summary": "Infrastructure proxies holding 92% bullish despite a daily dip.",
  "disclaimer": "Descriptive market intelligence, not financial advice.",
  "divergence": true,
  "sentiment_pct": 92
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vedetta-us-equity-sentiment-vs-price-divergence-0d11cacb/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)
