# SignalFuse Social Sentiment for Equity Tickers

> SignalFuse Social Sentiment for Equity Tickers is a paid API for AI agents from api.signalfuse.co, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns a ModernFinBERT-derived social sentiment label, score, and confidence for a given equity ticker symbol.

## Facts

- Endpoint: GET https://api.signalfuse.co/v1/sentiment/NVDA
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signalfuse-social-sentiment-for-equity-tickers-e2df73af
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vcfpbMlGo0Dwziu_FUBDU

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 signalfuse-social-sentiment-for-equity-tickers-e2df73af
```

Example prompt: What's the current social sentiment for NVDA — is it bullish, bearish, or neutral — and how confident is the signal?

## When to prefer this

Choose this endpoint when you need a fast, NLP-derived social sentiment signal for an individual equity ticker — especially when building trading agents, screening pipelines, or research tools that require a machine-readable bullish/bearish/neutral label with a quantified confidence score. Prefer this over raw social data scrapers when you need a pre-computed, normalized FinBERT score rather than raw text. It is well-suited for agentic workflows that gate trade decisions on sentiment thresholds.

## Known failure modes

- Unknown or unsupported ticker symbol returns an error or empty result
- Stale data if sentiment hasn't been refreshed recently (check updated_at field)
- Payment failure (x402) if USDC balance is insufficient — endpoint returns 402 status
- Rate limiting if calls are made too frequently
- Low confidence scores may indicate ambiguous or thin social signal for less-discussed tickers

## How this service works

ModernFinBERT social sentiment for equity tickers

## Output

A JSON object containing the ticker symbol, a sentiment label (bullish, bearish, or neutral), a sentiment score ranging from -1 to 1, a confidence value from 0 to 1, and a timestamp indicating when the sentiment was last updated.

## Request schema (JSON Schema)

```json
{
 "output": {
  "required": [
   "symbol",
   "label",
   "confidence",
   "score"
  ],
  "properties": {
   "label": {
    "enum": [
     "bullish",
     "bearish",
     "neutral"
    ],
    "type": "string"
   },
   "score": {
    "type": "number",
    "maximum": 1,
    "minimum": -1
   },
   "symbol": {
    "type": "string"
   },
   "confidence": {
    "type": "number",
    "maximum": 1,
    "minimum": 0
   },
   "updated_at": {
    "type": "string",
    "format": "date-time"
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "label": "bullish",
  "score": 0.7,
  "symbol": "TSLA",
  "confidence": 0.78,
  "updated_at": "2026-06-01T19:30:00+00:00"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/signalfuse-social-sentiment-for-equity-tickers-e2df73af/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.signalfuse.co](https://www.zero.xyz/host/api.signalfuse.co/llms.txt)
