# The Stall — Pre-Earnings Brief

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

Returns a concise pre-earnings intelligence brief for a US-listed stock ticker, covering key metrics and analyst expectations ahead of an earnings report.

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/pre-earnings-brief
- Price: $0.075/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-pre-earnings-brief-b7d6b09d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jyjCXu8QTqUKgjRuOu9Gt

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-pre-earnings-brief-b7d6b09d
```

Example prompt: Give me a pre-earnings brief for NVDA — I want to know what analysts are expecting, the key metrics to watch, and when they report next.

## When to prefer this

Use this endpoint when an agent or user needs a quick, structured intelligence brief on a stock ahead of its earnings report — particularly when no API key or account setup is desired and pay-per-call USDC micropayment via x402 is acceptable. Prefer this over general financial data APIs when the specific output needed is an earnings-focused narrative summary with analyst expectations rather than raw time-series data.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Ticker is valid but earnings are not imminent, resulting in limited or stale data
- Data provider latency causes delayed response
- Non-US tickers or OTC stocks may not be supported

## 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 pre-earnings brief for the requested stock ticker, including upcoming earnings date, analyst EPS and revenue consensus estimates, key metrics to watch, and a concise narrative summary of what investors and analysts are focused on heading into the earnings event.

## 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",
       "maxLength": 10,
       "minLength": 1,
       "description": "US stock ticker symbol (e.g. 'AAPL', 'NVDA', 'TSLA')."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/the-stall-pre-earnings-brief-b7d6b09d/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)
