# 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-15).

Returns ModernFinBERT-powered social sentiment analysis (bullish/bearish/neutral label, score, and confidence) for a given equity ticker symbol in real time.

## Facts

- Endpoint: GET https://api.signalfuse.co/v1/sentiment/TSLA
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signalfuse-social-sentiment-equity-ticker-925b17da
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ztn71A9CW9VmAh5VazzQg

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-925b17da
```

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

## When to prefer this

Choose this endpoint when you need a fast, NLP-derived social sentiment signal for a specific US equity ticker, especially when combining it with other SignalFuse trading signals (directional signals, macro regime) for a holistic view. It is distinct from price-based technical indicators and is best used to gauge crowd psychology and social media momentum around a stock.

## Known failure modes

- Unknown or unsupported ticker symbol — may return 404 or empty result
- Stale data if social feed ingestion is delayed — check updated_at timestamp
- Payment failure via x402 if USDC balance is insufficient — 402 response
- Rate limiting if too many requests are made in quick succession — 429 response
- Invalid ticker format (e.g. lowercase or special characters) may cause 400 error

## How this service works

ModernFinBERT social sentiment for equity tickers

## Output

A JSON object containing: a sentiment label ('bullish', 'bearish', or 'neutral'), a sentiment score (float), a confidence score (float), the requested ticker symbol, 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-equity-ticker-925b17da/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)
