# finance.toonhaus.dev EPS Actuals vs Estimates

> finance.toonhaus.dev EPS Actuals vs Estimates is a paid API for AI agents from finance.toonhaus.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns earnings per share (EPS) actuals versus analyst estimates by quarter for a given stock

## Facts

- Endpoint: GET https://finance.toonhaus.dev/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-toonhaus-dev-4011f86b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YhMjw1b0DbJOIQz9Xgovj

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-toonhaus-dev-4011f86b
```

Example prompt: Can you pull up the EPS actuals versus analyst estimates by quarter for NVDA so I can see how often they've been beating or missing expectations?

## When to prefer this

Use this endpoint when you need to compare reported EPS to analyst consensus estimates on a quarter-by-quarter basis, particularly for evaluating earnings surprise history, momentum, or analyst accuracy. Prefer this over a general news or financials endpoint when the specific question is about beat/miss EPS data.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- No earnings data available for a very new or obscure stock
- Payment failure via x402 protocol results in 402 response
- Rate limiting or quota exceeded returns an error
- Quarterly data may be delayed or unavailable for the most recent period

## How this service works

EPS actuals vs estimates by quarter

## Output

A structured list of quarterly earnings data including actual EPS reported, analyst consensus EPS estimate, the earnings surprise (difference or percentage beat/miss), and the fiscal quarter/period for a given stock ticker.

## 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-toonhaus-dev-4011f86b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from finance.toonhaus.dev](https://www.zero.xyz/host/finance.toonhaus.dev/llms.txt)
