# SignalFuse Fused Directional Trading Signal

> SignalFuse Fused Directional Trading Signal is a paid API for AI agents from api.signalfuse.co, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns a fused directional trading signal (long/short/neutral) with confidence score, signal strength, and macro/market/social component breakdown for a given crypto ticker symbol.

## Facts

- Endpoint: GET https://api.signalfuse.co/v1/signal/PEPE
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signalfuse-fused-directional-trading-signal-c77968b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mwwopfQlSJugfnIRWjD8K

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-fused-directional-trading-signal-c77968b7
```

Example prompt: What's the current SignalFuse trading signal for PEPE — is it long, short, or neutral, and how confident is the model? I also want to know the macro, market, and social component scores.

## When to prefer this

Choose this endpoint when you need a single fused, high-confidence directional trading signal that combines macro, market, and social signals into one actionable output with a confidence score. Prefer this over individual component signals when you want a holistic view without assembling signals yourself. Ideal for autonomous trading agents making buy/sell/hold decisions on crypto assets in real time.

## Known failure modes

- Unknown or unsupported ticker symbol returns an error or empty result
- Stale data flag set to true if signal has not been refreshed recently
- Payment failure if x402 USDC micropayment is not processed correctly
- Network timeout if signal computation takes too long
- Missing required fields in response if upstream data sources are unavailable

## How this service works

Fused directional trading signal with confidence score

## Output

A JSON object containing: the asset symbol, a directional signal enum (long/short/neutral), a signal strength integer (0-100), a confidence score (0-1), a market regime enum (risk_on/risk_off/neutral), a staleness boolean, data age in seconds, an updated_at timestamp, and a components object with macro, market, and social sub-scores each having a label and numeric score.

## Request schema (JSON Schema)

```json
{
 "output": {
  "required": [
   "symbol",
   "signal",
   "signal_strength",
   "confidence",
   "regime",
   "components"
  ],
  "properties": {
   "stale": {
    "type": "boolean"
   },
   "regime": {
    "enum": [
     "risk_on",
     "risk_off",
     "neutral"
    ],
    "type": "string"
   },
   "signal": {
    "enum": [
     "long",
     "short",
     "neutral"
    ],
    "type": "string"
   },
   "symbol": {
    "type": "string"
   },
   "components": {
    "type": "object",
    "properties": {
     "macro": {
      "type": "object",
      "properties": {
       "label": {
        "type": "string"
       },
       "score": {
        "type": "number"
       }
      }
     },
     "market": {
      "type": "object",
      "properties": {
       "label": {
        "type": "string"
       },
       "score": {
        "type": "number"
       }
      }
     },
     "social": {
      "type": "object",
      "properties": {
       "label": {
        "type": "string"
       },
       "score": {
        "type": "number"
       }
      }
     }
    }
   },
   "confidence": {
    "type": "number",
    "maximum": 1,
    "minimum": 0
   },
   "updated_at": {
    "type": "string",
    "format": "date-time"
   },
   "signal_strength": {
    "type": "integer",
    "maximum": 100,
    "minimum": 0
   },
   "data_age_seconds": {
    "type": "number"
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "stale": false,
  "regime": "risk_on",
  "signal": "long",
  "symbol": "BTC",
  "components": {
   "macro": {
    "label": "bullish",
    "score": 0.8
   },
   "market": {
    "label": "bullish",
    "score": 0.7
   },
   "social": {
    "label": "bullish",
    "score": 0.6
   }
  },
  "confidence": 0.85,
  "updated_at": "2026-04-14T12:00:00+00:00",
  "signal_strength": 72,
  "data_age_seconds": 15.2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/signalfuse-fused-directional-trading-signal-c77968b7/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)
