# agent402.tools Earnings Watch Bundle

> agent402.tools Earnings Watch 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-14).

Bundled single-call workflow that checks if a company is reporting earnings soon, retrieves the live stock quote, and fetches recent search results — all in one x402 payment.

## Facts

- Endpoint: POST https://agent402.tools/api/skill/earnings-watch
- Price: $0.02/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-earnings-watch-bundle-4a4439e3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1-aEYhLbQwEZBA2nZnDPb

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-watch-bundle-4a4439e3 -d '<json body>'
```

Example prompt: Is NVDA reporting earnings soon, and what's the analyst consensus? Pull the earnings date, live quote, and latest search results for Nvidia in one shot.

## When to prefer this

Choose this endpoint when you need a quick, comprehensive snapshot of a stock's near-term earnings picture — combining calendar, price, and search context — without chaining three separate API calls. Ideal for agents that need to answer 'is this company reporting soon and what's the sentiment?' in a single round-trip and single x402 payment. Prefer alternatives if you only need one of the three data types (pure quote, pure calendar, or pure search) and want to avoid the bundled cost.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty data
- Ticker exists but has no upcoming earnings scheduled — earnings calendar section may be empty or null
- Live quote unavailable during market closure or data-provider outage
- Payment failure via x402 protocol results in 402 response and no data returned
- Rate limiting or upstream data source throttling causing partial or delayed results

## How this service works

Bundled execution of the Earnings watch workflow - Is this company reporting soon and what's the consensus? Earnings calendar, live quote, and recent search results in one call. One x402 payment runs 3 underlying tools (earnings-calendar, stock-quote, search); partial-success per step.

## Output

A bundled response containing: the company's upcoming earnings date and reporting period from the earnings calendar, the current live stock quote (price, change, etc.), and recent web search results related to the ticker — all returned from a single API call covering three underlying tools.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "args": {
   "ticker": "AAPL"
  },
  "pack": "earnings-watch",
  "steps": [
   {
    "ok": true,
    "slug": "earnings-calendar",
    "result": {}
   },
   {
    "ok": true,
    "slug": "stock-quote",
    "result": {}
   },
   {
    "ok": true,
    "slug": "search",
    "result": {}
   }
  ],
  "summary": "3/3 steps succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-tools-earnings-watch-bundle-4a4439e3/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)
