# SignalFuse OP Trading Signal

> SignalFuse OP 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-16).

Returns a fused directional trading signal (long/short/neutral) with confidence score and macro/market/social component breakdown for the OP (Optimism) token

## Facts

- Endpoint: GET https://api.signalfuse.co/v1/signal/OP
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signalfuse-op-trading-signal-6091de7a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hFBsyqUlKII7i_sBCrpbS

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-op-trading-signal-6091de7a
```

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

## When to prefer this

Use this endpoint when you need a pre-fused, multi-factor directional signal for the OP token specifically, combining macro, market, and social signals into a single actionable output with confidence scoring. Prefer this over raw sentiment or price feeds when you want an opinionated, ready-to-act trading signal rather than raw data you must interpret yourself. Best for autonomous trading agents that need a single signal with regime context rather than building their own signal fusion layer.

## Known failure modes

- Stale data flag set to true if underlying data feeds are delayed beyond threshold
- Missing or unavailable component scores if data source is temporarily down
- HTTP 402 Payment Required if x402 micropayment header is not provided or USDC balance is insufficient
- Rate limiting or timeout if signal pipeline is under load

## How this service works

Fused directional trading signal with confidence score

## Output

Returns a JSON object containing: the token symbol (OP), a directional signal enum (long/short/neutral), an integer signal strength (0-100), a float confidence score (0-1), a market regime enum (risk_on/risk_off/neutral), sub-scores and labels for macro, market, and social components, a timestamp of last update, data age in seconds, and a boolean staleness flag.

## 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-op-trading-signal-6091de7a/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)
