# SignalFuse AVAX Trading Signal

> SignalFuse AVAX 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 (long/short/neutral) with confidence score and component breakdown for AVAX (Avalanche)

## Facts

- Endpoint: GET https://api.signalfuse.co/v1/signal/AVAX
- 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/signalfuse-avax-trading-signal-9c13572d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TtrvkREx1GQ4uVSmfp1Rk

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-avax-trading-signal-9c13572d
```

Example prompt: What's the current SignalFuse trading signal for AVAX — is it long, short, or neutral, and how confident is the model in that call right now?

## When to prefer this

Use this endpoint when you need a pre-fused, multi-factor directional trading signal for AVAX that combines macro, market, and social components into a single actionable output — ideal for autonomous trading agents that need a single confidence-weighted call rather than raw data to process themselves. Prefer this over individual component endpoints when latency and simplicity matter. Best suited for real-time decision loops where the agent needs to act on a long/short/neutral classification with a quantified confidence level.

## Known failure modes

- Stale data: response returns stale:true when upstream data feeds are delayed; agent should treat signal with caution
- Symbol mismatch: endpoint is hard-coded to AVAX — requesting another ticker requires a different endpoint
- Payment failure: x402 payment of $0.01 USDC not fulfilled results in 402 response with no signal data
- Downstream data unavailability: macro or social component scores may be missing if upstream feeds are down
- Low confidence output: confidence score near 0.5 indicates indeterminate signal; agent should avoid acting on it

## How this service works

Fused directional trading signal with confidence score

## Output

A JSON object containing: the ticker symbol (AVAX), directional signal enum (long/short/neutral), signal_strength integer (0–100), confidence float (0–1), regime enum (risk_on/risk_off/neutral), a components object with macro/market/social sub-scores and labels (e.g. bullish/bearish), updated_at ISO timestamp, data_age_seconds float, and a boolean stale flag indicating whether the underlying data is fresh.

## 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-avax-trading-signal-9c13572d/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)
