# NEXUS Consensus Financial Data

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

Returns market consensus signals (e.g. HOLD/BUY/SELL) for financial categories like Fed policy, GDP, CPI, and Bitcoin

## Facts

- Endpoint: GET https://nexus-agent-xa12.onrender.com/v1/tools/consensus
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nexus-consensus-financial-data-9e1ea4db
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_b8oAmw5KiqjQL-iEEbQ2V

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-consensus-financial-data-9e1ea4db
```

Example prompt: What's the current market consensus on Fed policy — is it a hold, hike, or cut? Pull it from NEXUS.

## When to prefer this

Use this endpoint when an agent needs a quick, pay-per-call consensus signal on major macroeconomic or crypto categories (Fed, GDP, CPI, Bitcoin) without subscribing to a full financial data service. Ideal for lightweight agent workflows that need a single consensus verdict rather than raw time-series data.

## Known failure modes

- Payment failure: x402 USDC payment not completed, endpoint returns 402 Payment Required
- Invalid category: unsupported category string returns an error or empty markets array
- Network timeout: Render.com cold-start latency causing delayed or failed response
- Empty markets array: consensus data may not be available for all categories at all times

## 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 source ('NEXUS'), a markets array with relevant data points, the queried category (e.g. 'Fed', 'GDP', 'CPI', 'Bitcoin'), and a consensus signal string (e.g. 'HOLD', 'BUY', 'SELL').

## 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": {
      "category": {
       "type": "string",
       "description": "Fed, GDP, CPI, Bitcoin"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "source": "NEXUS",
  "markets": [],
  "category": "Fed",
  "consensus": "HOLD"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nexus-consensus-financial-data-9e1ea4db/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)
