# agent402.tools Earnings Deep-Dive Workflow

> agent402.tools Earnings Deep-Dive Workflow is a paid API for AI agents from agent402.tools, paid per call via x402, $0.043/call, status unknown (last checked 2026-09-15).

Runs a bundled pre-earnings workflow for a stock ticker: fetches earnings date, financials, SEC filings, live quote, and analyst news in one paid call

## Facts

- Endpoint: POST https://agent402.tools/api/skill/earnings-deep-dive
- Price: $0.043/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-earnings-deep-dive-workflow-c1f971c9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PreMYWBqiqKR3GYQwkWow

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-earnings-deep-dive-workflow-c1f971c9 -d '<json body>'
```

Example prompt: Pull a full pre-earnings deep-dive on MSFT — I want the upcoming earnings date, latest financials, recent SEC filings, the live quote, and any fresh analyst news all at once.

## When to prefer this

Use this endpoint when you need comprehensive pre-earnings intelligence on a single company and want to avoid making multiple separate API calls for earnings dates, financials, SEC data, quotes, and news. Ideal for agents doing pre-earnings research or briefings where a single $0.05 payment bundles everything needed.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error
- Payment failure via x402 prevents execution
- Upstream financial data provider unavailable causing partial or failed response
- Ticker has no upcoming earnings date scheduled yet
- Rate limiting if too many calls are made in quick succession

## How this service works

Bundled execution of the Earnings deep-dive workflow - Everything you need before a company reports: the upcoming earnings date, the latest financials, recent SEC filings, the live quote, and fresh analyst news - in one pass. One x402 payment runs 5 underlying tools (earnings-calendar, company-financials, edgar-filings, stock-quote, search); partial-success per step.

## Output

A bundled response containing: the company's next earnings date, recent financial statements, latest SEC filings, current live stock quote, and recent analyst news articles — all retrieved in a single call for the given ticker.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "args": {
   "ticker": "TSLA"
  },
  "pack": "earnings-deep-dive",
  "steps": [
   {
    "ok": true,
    "slug": "earnings-calendar",
    "result": {}
   },
   {
    "ok": true,
    "slug": "company-financials",
    "result": {}
   },
   {
    "ok": true,
    "slug": "edgar-filings",
    "result": {}
   },
   {
    "ok": true,
    "slug": "stock-quote",
    "result": {}
   },
   {
    "ok": true,
    "slug": "search",
    "result": {}
   }
  ],
  "summary": "5/5 steps succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-tools-earnings-deep-dive-workflow-c1f971c9/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)
