# SignalFuse Social Sentiment — Equity Ticker

> SignalFuse Social Sentiment — Equity Ticker 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 ModernFinBERT-powered social sentiment (bullish/bearish/neutral label, score, and confidence) for a given equity ticker symbol.

## Facts

- Endpoint: GET https://api.signalfuse.co/v1/sentiment/AMZN
- 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-equity-ticker-00651825
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4HweGnKDWbZq2S0S993yz

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-equity-ticker-00651825
```

Example prompt: What's the current social sentiment on AMZN right now — is it bullish, bearish, or neutral, and how confident is the signal?

## When to prefer this

Choose this endpoint when you need a quantitative, model-driven social sentiment signal for individual U.S. equity tickers, especially when you need a confidence score alongside the label. It is powered by a FinBERT-class model trained on financial social media, making it more domain-appropriate than general-purpose sentiment APIs. Prefer it over raw social media scraping or generic NLP pipelines when you need a single, pre-scored, structured output ready for trading or portfolio logic.

## Known failure modes

- Invalid or unsupported ticker symbol returns an error or empty result
- Payment failure (402) if x402 USDC microtransaction is not completed
- Stale data if the sentiment model hasn't been updated recently (check updated_at)
- Rate limiting or service unavailability returning 429 or 5xx errors

## How this service works

ModernFinBERT social sentiment for equity tickers

## Output

Returns a JSON object containing the ticker symbol, a sentiment label (bullish, bearish, or neutral), a numeric score between -1 and 1, a confidence value between 0 and 1, and a UTC timestamp of when the sentiment was last updated.

## Request schema (JSON Schema)

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

## 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-equity-ticker-00651825/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)
