# agent402.tools Financial Research Bundle

> agent402.tools Financial Research Bundle is a paid API for AI agents from agent402.tools, paid per call via x402, $0.024/call, status unknown (last checked 2026-09-14).

Runs a bundled 7-tool financial research workflow for a single ticker — pulling SEC filings, real-time quotes, historical prices, and macro context in one x402 payment

## Facts

- Endpoint: POST https://agent402.tools/api/skill/financial-research
- Price: $0.024/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-tools-financial-research-bundle-c3e59b7a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_b28kitNq0vy4Kbu40Y5NC

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 agent402-tools-financial-research-bundle-c3e59b7a -d '<json body>'
```

Example prompt: Run a full financial research deep dive on NVDA — I need the real-time quote, historical price data, SEC filings, and macro context all at once.

## When to prefer this

Prefer this endpoint when you need comprehensive financial data for a single ticker in one API call and want to avoid orchestrating multiple separate tool calls. Ideal when researching US-listed equities for investment analysis, due diligence, or financial summaries. Cost-effective at $1.50 USDC when 7 tools would otherwise each require separate payments.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty data
- SEC EDGAR may have no filings for very small or foreign tickers
- Real-time quote unavailable for tickers outside major US exchanges
- Network or upstream provider timeout causes partial data return
- Payment not processed causes 402 rejection before execution begins

## How this service works

Bundled execution of the Financial research workflow - Pull SEC filings, real-time quotes, historical prices, and macro context for a single ticker in one pass. One x402 payment runs 7 underlying tools (stock-quote, stock-history, edgar-filings, edgar-company-facts, edgar-insider-trades, fred-series, research-company); partial-success per step.

## Output

A comprehensive financial research bundle for the given ticker, including real-time stock quote, historical price series, relevant SEC filings (e.g. 10-K, 10-Q), and macroeconomic context — all returned from 7 underlying tools in a single response.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ticker": {
   "type": "string",
   "description": "Stock ticker symbol (e.g. AAPL, MSFT, NVDA)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "args": {
   "ticker": "AAPL"
  },
  "pack": "financial-research",
  "steps": [
   {
    "ok": true,
    "slug": "stock-quote",
    "result": {}
   },
   {
    "ok": true,
    "slug": "stock-history",
    "result": {}
   },
   {
    "ok": true,
    "slug": "edgar-filings",
    "result": {}
   },
   {
    "ok": true,
    "slug": "edgar-company-facts",
    "result": {}
   },
   {
    "ok": true,
    "slug": "edgar-insider-trades",
    "result": {}
   },
   {
    "ok": true,
    "slug": "fred-series",
    "result": {}
   }
  ],
  "summary": "6/6 steps succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-tools-financial-research-bundle-c3e59b7a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
