# Money Agent – Verified Research Decision

> Money Agent – Verified Research Decision is a paid API for AI agents from money-agent-b4o0.onrender.com, paid per call via x402, $2/call, status unknown (last checked 2026-09-15).

Runs a structured research query against a set of candidates and returns a qualified/rejected verdict with supporting evidence, payable per-call via x402.

## Facts

- Endpoint: POST https://money-agent-b4o0.onrender.com/verified-research-decision
- Price: $2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/money-agent-verified-research-decision-ce28bc55
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Xu1quHatLIcg2JEBw-1bk

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 money-agent-verified-research-decision-ce28bc55 -d '<json body>'
```

Example prompt: Screen up to 10 US-based fintech startups focused on B2B payments against these requirements: Series A or later, profitable unit economics, and at least 3 enterprise clients — give me a qualified/rejected verdict for each.

## When to prefer this

Choose this endpoint when you need a structured pass/fail verdict across multiple candidates based on explicit requirements, especially when geographic scoping matters and you want results categorized into qualified, rejected, and partial buckets. Prefer it over raw search endpoints when you need a decision output rather than just ranked results, and when you are operating in an autonomous agent workflow that can handle x402 micropayments per call.

## Known failure modes

- Missing or empty query string returns a validation error
- Requirements array exceeding expected complexity may produce partial results
- Limit outside 1–25 range is rejected with a schema validation error
- Geographic scope too broad or ambiguous may reduce result quality
- Payment not completed via x402 results in a 402 Payment Required response

## How this service works

Machine-payable financial data and autonomous-agent services over x402.

## Output

A JSON object with an overall verdict string (e.g. 'qualified'), an array of qualified candidates, an array of rejected candidates, and a partial array for borderline matches. The ok flag confirms successful processing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "maximum": 25,
   "minimum": 1
  },
  "query": {
   "type": "string"
  },
  "geography": {
   "type": "string"
  },
  "requirements": {
   "type": "array",
   "items": {
    "type": "string"
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "partial": [],
  "verdict": "qualified",
  "rejected": [],
  "qualified": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/money-agent-verified-research-decision-ce28bc55/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from money-agent-b4o0.onrender.com](https://www.zero.xyz/host/money-agent-b4o0.onrender.com/llms.txt)
