# SignalFuse ETH Trading Signal

> SignalFuse ETH 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-15).

Returns a fused directional trading signal with confidence score for Ethereum (ETH)

## Facts

- Endpoint: GET https://api.signalfuse.co/v1/signal/ETH
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-signalfuse-co-c320a7b8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UNmCO-8YuHftN_2Vld2iz

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 api-signalfuse-co-c320a7b8
```

Example prompt: What's the current fused directional trading signal for ETH right now, and how confident is it?

## When to prefer this

Use this endpoint when you need a single, pre-fused directional signal for ETH with an attached confidence score, rather than assembling raw indicators yourself. Ideal for automated trading agents that need a quick actionable bias (buy/sell/neutral) for Ethereum without building their own signal fusion pipeline.

## Known failure modes

- Asset not supported — returns 404 or error if a non-supported symbol is queried
- Payment failure — 402 if x402 USDC payment of $0.01 is not provided or fails
- Rate limiting — 429 if too many requests are made in a short period
- Service unavailable — 503 if signal computation is temporarily offline
- Stale data — signal may lag real-time market conditions during high volatility

## How this service works

Fused directional trading signal with confidence score

## Output

A fused directional trading signal (e.g. buy/sell/neutral or long/short) for ETH along with a numeric confidence score indicating how strong or reliable that signal is at the current moment.

## Example request

```json
{
 "symbol": "ETH"
}
```

## 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/api-signalfuse-co-c320a7b8/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)
