# finance.toon.haus Earnings Calendar

> finance.toon.haus Earnings Calendar 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 upcoming earnings announcement dates for publicly traded companies

## Facts

- Endpoint: GET https://finance.toon.haus/api/market/earnings-calendar
- 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-d219ada2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_B3nqB9sgm2u8rikRNtumw

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-d219ada2
```

Example prompt: What companies have earnings announcements coming up this week and next week — can you pull the latest earnings calendar for me?

## When to prefer this

Use this endpoint when you need a broad overview of all upcoming earnings dates across the market. Prefer this over ticker-specific financial endpoints when you want to discover which companies are reporting soon rather than looking up details for a specific known company.

## Known failure modes

- No query parameters accepted or needed — passing unexpected params may be ignored
- Response may be large (original size ~170KB, response is truncated in examples)
- Rate limits or payment failure may return 402 Payment Required
- Data may be delayed or reflect only a rolling window of upcoming dates
- Service may return empty results outside of active earnings season

## How this service works

Upcoming earnings dates

## Output

A list of upcoming earnings announcement dates including company names, ticker symbols, and scheduled report dates, allowing the agent to know which companies are due to report earnings soon.

## Example request

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

## 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-d219ada2/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)
