# Vedetta Social Sentiment

> Vedetta Social Sentiment 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-16).

Returns social sentiment metrics for a single crypto asset: bullish percentage, social score, and volume trend vs baseline

## Facts

- Endpoint: GET https://vedetta.dethboy.com/v1/social
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vedetta-social-sentiment-a5b9351c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6nf1QPZuSEUxjR8wntx9y

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-social-sentiment-a5b9351c
```

Example prompt: What's the social sentiment picture for BTC right now — give me the bullish percentage, social score, and how volume compares to baseline?

## When to prefer this

Choose this endpoint when you need a fast, cheap ($0.09) single-call crowd positioning snapshot for one crypto asset — specifically when you want bullish percentage, social score, and volume trend relative to baseline in one response. Prefer this over broader market endpoints when you need asset-specific social sentiment, and over the cached history endpoint when you want the freshest available read rather than a time series.

## Known failure modes

- Missing or invalid 'asset' query parameter returns an error — must be a recognized ticker like BTC, ETH, SOL
- Unsupported or obscure ticker symbols may return no data or an empty result
- Payment failure (x402) if USDC balance is insufficient — call is blocked before executing
- Stale data possible if social ingestion pipeline has a delay — described as cached signals
- Rate limiting may apply under high request volume

## How this service works

Social sentiment read for one crypto asset: bullish %, social score, and volume trend vs baseline — crowd positioning in one call (?asset=BTC). Fresh from the desk, priced under every comparable sentiment endpoint. Descriptive research, not financial advice.

## Output

Returns a single-asset social sentiment object including: bullish percentage (crowd lean toward upside), a social score (aggregate sentiment strength), and volume trend relative to a baseline (indicating whether discussion is heating up or cooling off).

## 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"
      },
      "stance": {
       "type": "string"
      },
      "quality": {
       "type": "string"
      },
      "summary": {
       "type": "string"
      },
      "disclaimer": {
       "type": "string"
      },
      "social_score": {
       "type": "number"
      },
      "volume_trend": {
       "type": "string"
      },
      "sentiment_pct": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asset": "BTC",
  "stance": "bullish",
  "quality": "structured",
  "summary": "Conviction-heavy bullish crowd; volume above baseline.",
  "disclaimer": "Descriptive market intelligence, not financial advice.",
  "social_score": 65.5,
  "volume_trend": "up",
  "sentiment_pct": 77
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vedetta-social-sentiment-a5b9351c/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)
