# agent402.tools Financial Analysis Bundle

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

Executes a bundled financial analysis workflow for a stock ticker: live quote, 9 key financial metrics, and upcoming earnings in a single x402-paid call

## Facts

- Endpoint: POST https://agent402.tools/api/skill/financial-analysis
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-tools-financial-analysis-bundle-686769da
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GjZkC3Abz4WtM6YgmRfPV

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-analysis-bundle-686769da -d '<json body>'
```

Example prompt: Can you give me a full financial snapshot of NVDA — live stock price, key metrics like revenue and cash flow, and when the next earnings date is?

## When to prefer this

Choose this endpoint when you need a comprehensive but quick company financial overview and want to avoid making multiple separate API calls. It bundles live quote, 9 financial metrics, and earnings into one payment and one response, making it ideal for financial research agents that need breadth over depth in a single round-trip.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Ticker for a non-US or unlisted company may not be supported
- Underlying data provider outage may cause partial or failed results
- x402 payment failure prevents execution entirely
- Delisted or OTC stocks may return incomplete metrics

## How this service works

Bundled execution of the Financial analysis workflow - Quick company snapshot: live quote, 9 key financial metrics (revenue through cash flow), and upcoming earnings - one call, one payment. One x402 payment runs 3 underlying tools (stock-quote, company-financials, earnings-calendar); partial-success per step.

## Output

Returns a bundled result containing: (1) live stock quote for the ticker, (2) nine key financial metrics spanning revenue through cash flow, and (3) upcoming earnings date/schedule — all in a single response triggered by one $0.08 USDC x402 payment.

## 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-analysis",
  "steps": [
   {
    "ok": true,
    "slug": "stock-quote",
    "result": {}
   },
   {
    "ok": true,
    "slug": "company-financials",
    "result": {}
   },
   {
    "ok": true,
    "slug": "earnings-calendar",
    "result": {}
   }
  ],
  "summary": "3/3 steps succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-tools-financial-analysis-bundle-686769da/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)
