# The Stall — Earnings Reaction Data

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

Returns historical stock price reactions to earnings announcements for a given US equity ticker, covering up to 16 past earnings periods.

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/earnings-reaction
- Price: $0.079/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-reaction-data-36ed49b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yUq9cDy2tOEZC1Mpc0_jN

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-reaction-data-36ed49b7
```

Example prompt: Pull the earnings reaction history for NVDA over the last 12 periods — I want to see how the stock has moved after each earnings announcement.

## When to prefer this

Choose this endpoint when you need historical post-earnings price reaction data for a specific US equity, especially for options pricing, volatility modeling, or quantitative earnings strategies. It requires no API key or account setup — just a USDC payment on Base mainnet. Prefer this over general financial data APIs when you specifically need earnings event price reaction history rather than general price history or fundamental data.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Requesting more than 16 periods returns a validation error
- Non-US equities or OTC tickers may not be supported
- Insufficient USDC balance or failed x402 payment results in a 402 response and no data
- Very recently listed stocks may have fewer historical earnings periods than requested

## 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 dataset covering up to 16 past earnings periods for the requested ticker, including earnings announcement dates, the stock's price reaction (percentage move) around each event, and potentially beat/miss information relative to analyst expectations.

## 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 equity ticker symbol (e.g. AAPL, MSFT, NVDA)."
      },
      "periods": {
       "type": "integer",
       "default": 8,
       "maximum": 16,
       "minimum": 1,
       "description": "Number of past earnings periods to return (default 8, max 16)."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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