# NEXUS Aggregate Financial Signal

> NEXUS Aggregate Financial Signal is a paid API for AI agents from nexus-agent-xa12.onrender.com, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Returns a multi-source aggregated market consensus (bullish/bearish), current price, confidence score, and technical signals for a given crypto ticker symbol

## Facts

- Endpoint: GET https://nexus-agent-xa12.onrender.com/aggregate
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nexus-aggregate-financial-signal-cf997d04
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qccDHqzkxR5WQzin_Gfss

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 nexus-aggregate-financial-signal-cf997d04
```

Example prompt: What's the current NEXUS aggregate consensus for BTC right now — is it bullish or bearish, and how confident is the signal?

## When to prefer this

Use this endpoint when you need a single consolidated market sentiment signal for a cryptocurrency that combines technical indicators (z-score, Bollinger bands), AI model output, and prediction market data (Kalshi) into one confidence-weighted consensus — rather than querying each data source individually.

## Known failure modes

- Unknown or unsupported ticker symbol returns error or empty sources
- Network timeout from underlying data providers results in partial or failed response
- Payment not settled via x402/USDC triggers 402 Payment Required before data is returned
- Missing required 'symbol' query parameter returns validation error

## How this service works

Pay-per-call financial data. Streamable HTTP MCP. x402 USDC on Base. Not financial advice.

## Output

A JSON object containing the ticker symbol, current price in USD, a consensus label (e.g. BULLISH or BEARISH), a confidence score between 0 and 1, and sub-signals from multiple sources including z-score, Bollinger bands, Kalshi prediction markets, and a NEXUS AI model.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Ticker symbol e.g. BTC, ETH"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "source": "NEXUS Aggregate",
  "symbol": "BTC",
  "sources": {
   "zscore": {},
   "nexus_ai": {},
   "bollinger": {},
   "kalshi_market": {}
  },
  "consensus": "BULLISH",
  "price_usd": 78000,
  "confidence": 0.67
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nexus-aggregate-financial-signal-cf997d04/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from nexus-agent-xa12.onrender.com](https://www.zero.xyz/host/nexus-agent-xa12.onrender.com/llms.txt)
