# The Stall — Earnings Intel Bundle

> The Stall — Earnings Intel Bundle is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-14).

Returns an earnings intelligence bundle for a US stock ticker, including upcoming earnings dates and related financial context within a configurable look-ahead window.

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/earnings-intel-bundle
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the-stall-earnings-intel-bundle-3bf221ce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9RJfrscsfdsnXUJGHjXGl

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 the-stall-earnings-intel-bundle-3bf221ce
```

Example prompt: Pull the earnings intel bundle for NVDA over the next 45 days — I want to see when they're reporting and any related earnings data.

## When to prefer this

Choose this endpoint when you need a quick, no-account earnings calendar lookup for a specific US stock ticker and want to pay per-call in USDC without managing API keys or subscriptions. It is especially useful for AI agents that need to check earnings schedules programmatically as part of a broader financial workflow or portfolio monitoring pipeline. Prefer alternatives if you need bulk multi-ticker earnings sweeps in a single call, real-time intraday earnings surprises, or historical earnings data beyond future calendar events.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- days_ahead value outside 1–90 range may return a validation error or default to 30
- No earnings scheduled within the look-ahead window returns an empty or null earnings date
- Network or payment failure (x402 USDC transaction issue) prevents response
- Stale or unavailable data from upstream financial data provider returns partial or outdated results

## How this service works

Domain-agnostic x402 capability chassis by IntuiTek¹. 300 AI-callable data services — pay USDC on Base mainnet. No accounts or API keys required.

## Output

A structured earnings intelligence bundle containing the upcoming earnings date(s) for the specified ticker within the look-ahead window, along with related financial context such as expected report timing, quarter, and any additional earnings metadata available for that stock.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "US stock ticker symbol (e.g. AAPL, MSFT, NVDA)."
      },
      "days_ahead": {
       "type": "integer",
       "default": 30,
       "description": "Look-ahead window for earnings calendar (1–90 days, default 30)."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/the-stall-earnings-intel-bundle-3bf221ce/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from the-stall.intuitek.ai](https://www.zero.xyz/host/the-stall.intuitek.ai/llms.txt)
