# finance.toon.haus Stock Earnings EPS

> finance.toon.haus Stock Earnings EPS is a paid API for AI agents from finance.toon.haus, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns EPS actuals versus analyst estimates by quarter for a given stock symbol

## Facts

- Endpoint: GET https://finance.toon.haus/api/stock/earnings
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/finance-toon-haus-b2083ba6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IcCdQz6OkMZUq3ZzBaSLQ

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 finance-toon-haus-b2083ba6
```

Example prompt: Can you pull up the quarterly EPS actuals versus analyst estimates for NVDA — I want to see how much they beat or missed each quarter?

## When to prefer this

Use this endpoint when you need historical or recent EPS actuals compared to analyst estimates on a per-quarter basis for a publicly traded stock. Prefer this over general market news endpoints when the user specifically wants earnings surprise data, beat/miss analysis, or a trend of EPS performance over multiple quarters.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- No earnings data available for very new or obscure stocks
- Missing query parameter for ticker symbol causes a 400 bad request
- Rate limiting or payment failure (402) if USDC micropayment is not processed
- Stale data if the most recent earnings quarter has not yet been ingested

## How this service works

EPS actuals vs estimates by quarter

## Output

A list of quarterly earnings records for the requested stock, each containing the reported EPS actual, the analyst consensus EPS estimate, the surprise amount or percentage, and the associated fiscal quarter and date.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "ticker": "AAPL"
  }
 }
}
```

## 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",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/finance-toon-haus-b2083ba6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from finance.toon.haus](https://www.zero.xyz/host/finance.toon.haus/llms.txt)
