# NEXUS Agent Services – Financial Search

> NEXUS Agent Services – Financial Search is a paid API for AI agents from nexus-agent-xa12.onrender.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Search for AI-summarized financial data via a pay-per-call REST endpoint using USDC micropayments on Base

## Facts

- Endpoint: GET https://nexus-agent-xa12.onrender.com/search
- Price: $0.02/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-search-f96b274b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HqtSeBYNljXVGcHXLAN-v

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-search-f96b274b
```

Example prompt: Search NEXUS for a financial summary on Apple Inc. — I want to know the latest key financial data and any relevant market context.

## When to prefer this

Use this endpoint when you need a quick, AI-summarized financial data result for a specific query and are willing to pay $0.02 USDC per call via x402 on Base; prefer this over free alternatives when you need structured, summarized output rather than raw data or when integrating micropayment-based API calls into an autonomous agent workflow.

## Known failure modes

- Missing required query parameter 'q' returns a validation error
- Insufficient USDC balance or failed x402 payment results in 402 Payment Required
- Service unavailable on Render free tier cold-start causes timeout
- Empty or ambiguous query may return a generic or low-quality AI summary
- Rate limiting may occur under high call volume

## How this service works

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

## Output

Returns a JSON object containing the original query, source attribution ('NEXUS'), and an AI-generated summary of relevant financial data matching the search query.

## 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": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Search query"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "query": "example query",
  "source": "NEXUS",
  "summary": "AI-summarized results."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nexus-agent-services-financial-search-f96b274b/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)
