# SignalFuse Batch Crypto Trading Signals

> SignalFuse Batch Crypto Trading Signals is a paid API for AI agents from api.signalfuse.co, paid per call via x402, $0.075/call, status unknown (last checked 2026-09-15).

Returns fused directional trading signals with confidence scores and component breakdowns for multiple crypto assets in a single call

## Facts

- Endpoint: GET https://api.signalfuse.co/v1/signal/batch
- Price: $0.075/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-811311ad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tDh68xlAgCOxVGhxd9PbU

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-811311ad
```

Example prompt: What are the current trading signals for BTC, ETH, and SOL right now — including whether each is risk-on or risk-off, the signal direction like long or short, and how confident the model is?

## When to prefer this

Use this endpoint when you need trading signals for multiple crypto assets in a single API call rather than making individual requests per asset. Ideal for portfolio-level analysis, screening across the top 10 supported assets, or when you need macro regime, market, and social components together with a fused directional signal and confidence score.

## Known failure modes

- Invalid symbols in comma-separated list returns error or empty signal entries
- Request with no valid assets returns empty signals object
- Payment failure (402) if x402 payment header not included or insufficient USDC
- Rate limiting if too many requests in a short window
- Partial results if some symbols are unsupported — only recognized tickers returned

## How this service works

Batch trading signals for multiple crypto assets

## Output

A JSON object containing a count of assets analyzed and a signals map keyed by symbol. Each symbol entry includes: regime classification (risk_on/risk_off/neutral), signal direction (long/short), confidence score (0-1), signal strength (0-100), and component-level breakdowns for macro, market, and social sub-signals each with a label and numeric score.

## Example request

```json
{
 "symbols": "BTC,ETH,SOL"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "symbols": {
   "type": "string",
   "description": "Comma-separated symbols, e.g. BTC,ETH,SOL. Omit for all 10 assets."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 10,
  "signals": {
   "BTC": {
    "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,
    "signal_strength": 72
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-signalfuse-co-811311ad/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)
