# SignalFuse Real-Time Social Sentiment Analysis

> SignalFuse Real-Time Social Sentiment Analysis 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 real-time social sentiment label, score, and confidence for a given crypto asset symbol

## Facts

- Endpoint: GET https://api.signalfuse.co/v1/sentiment/%7Bsymbol%7D
- 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-real-time-social-sentiment-analysis-21dc124d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_frrlTqyc47-KivDPK6Nbc

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-real-time-social-sentiment-analysis-21dc124d
```

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

## When to prefer this

Use this endpoint when an AI trading agent needs a quick, real-time read on social market sentiment for a specific crypto asset to inform directional bias or risk decisions. Prefer this over generic news APIs when you need a structured, scored sentiment signal (label + confidence) suitable for programmatic trading logic rather than raw text.

## Known failure modes

- Unknown or unsupported symbol returns 404 or empty result
- Stale data if social feeds are delayed or unavailable
- Payment failure via x402 if USDC balance is insufficient on Base
- Rate limiting if too many calls are made in rapid succession
- Symbol format mismatch (e.g. 'bitcoin' vs 'BTC') may return no result

## How this service works

11 MCP tools for autonomous trading agents. Real-time signals, sentiment, macro regime, web search, code execution. Pay per call with USDC on Base — no API keys needed.

## Output

A JSON object containing: sentiment label (e.g. 'bullish' or 'bearish'), a numeric sentiment score (0-1), the asset symbol, a confidence score (0-1), and an ISO 8601 timestamp of when the data was last updated.

## Example request

```json
{
 "symbol": "TSLA",
 "strategy_id": "test_strategy_001"
}
```

## 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": "BTC",
  "confidence": 0.78,
  "updated_at": "2026-04-14T12:00:00+00:00"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/signalfuse-real-time-social-sentiment-analysis-21dc124d/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)
