# SignalFuse BTC Fused Directional Trading Signal

> SignalFuse BTC 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-15, last successful call 2026-06-02).

Returns a fused directional trading signal with a confidence score for Bitcoin (BTC)

## Facts

- Endpoint: GET https://api.signalfuse.co/v1/signal/BTC
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-06-02
- Success rate: 100% of calls made through Zero
- Activations on Zero: 49
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-signalfuse-co-9c65c1f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KSV7isHiYDcXZnwcQWgoO

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-9c65c1f0
```

Example prompt: Give me the current fused directional trading signal for BTC with its confidence score so I can decide whether to go long or short.

## When to prefer this

Use this endpoint when you need a pre-fused, consensus directional signal for Bitcoin that aggregates multiple strategy inputs into a single actionable call with a confidence score, rather than building your own signal fusion logic or querying individual strategy signals separately.

## Known failure modes

- Asset symbol not supported — returns 404 or error if a non-BTC asset is requested at this endpoint
- Service unavailable or data feed lag — returns 503 if upstream data sources are temporarily offline
- Rate limiting or payment failure — returns 402 if x402 payment is not properly attached
- Insufficient market data — may return low-confidence or null signal during low-liquidity periods

## How this service works

Fused directional trading signal with confidence score

## Output

A fused directional trading signal (e.g. buy/sell/hold or bullish/bearish/neutral) along with a numeric confidence score indicating how strong the signal is for Bitcoin at the time of the request.

## Example request

```json
{
 "asset": "BTC"
}
```

## 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-9c65c1f0/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)
