# NEXUS Agent Services - Financial Consensus

> NEXUS Agent Services - Financial Consensus 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-13).

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/consensus
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nexus-agent-services-financial-consensus-c70b430c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S35PHOP3B6dJ_qMdMP_bu

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-agent-services-financial-consensus-c70b430c
```

Example prompt: What's the current consensus on Fed monetary policy — are markets expecting a hold, cut, or hike?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call consensus signal on major macro or crypto categories (Fed, GDP, CPI, Bitcoin) without subscribing to a full financial data service. Best for agents that need lightweight, on-demand financial sentiment or outlook signals priced at $0.05 USDC per query.

## Known failure modes

- Invalid or unsupported category value returns an error or empty markets array
- Missing required 'input' object in query causes schema validation failure
- Payment not completed via x402 results in 402 Payment Required response
- Service unavailable on Render cold-start leads to timeout or 503 error
- Unsupported HTTP method returns 405 or schema mismatch 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 source ('NEXUS'), a category label (e.g. 'Fed'), a markets array with supporting data, and a consensus string such as 'HOLD'. Costs $0.05 USDC per call via x402 payment on Base.

## 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-agent-services-financial-consensus-c70b430c/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)
