# SEC EDGAR Earnings Calendar

> SEC EDGAR Earnings Calendar is a paid API for AI agents from x402-deployer.x402-deployer.workers.dev, paid per call via x402, $0.030000/call, status unknown (last checked 2026-09-15).

Returns an earnings calendar derived from SEC 8-K (Item 2.02), 10-Q, 10-K, NT 10-Q, and NT 10-K filings sourced directly from SEC EDGAR.

## Facts

- Endpoint: POST https://x402-deployer.x402-deployer.workers.dev/earnings-calendar
- Price: $0.030000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-deployer-x402-deployer-workers-dev-898fc32c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gmCfwuI74fRDJsfqm24nE

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 x402-deployer-x402-deployer-workers-dev-898fc32c -d '<json body>'
```

Example prompt: Pull the earnings calendar from SEC EDGAR filings for the next 30 days — I want to see which companies have upcoming 10-K, 10-Q, or 8-K Item 2.02 earnings reports scheduled.

## When to prefer this

Use this endpoint when you need earnings dates sourced directly from official SEC EDGAR filings without aggregator terms-of-use concerns. Ideal for compliance-sensitive applications, financial research agents, or any use case requiring authoritative government-sourced earnings data rather than third-party financial data providers.

## Known failure modes

- No filings found for the specified date range or company — returns empty result set
- Invalid ticker or CIK provided — may return no results or an error
- SEC EDGAR API temporarily unavailable — upstream connectivity error
- Date range too broad may result in timeouts or large response payloads
- Company not publicly traded or not required to file with SEC — no records available

## How this service works

Earnings calendar derived from SEC 8-K Item 2.02, 10-Q, 10-K, NT 10-Q, NT 10-K filings. Federal public SEC EDGAR data only — no aggregator ToU concerns.

## Output

A list of earnings events with company names, ticker symbols or CIK identifiers, filing types (8-K Item 2.02, 10-Q, 10-K, NT 10-Q, NT 10-K), fiscal periods, and report/filing dates sourced directly from SEC EDGAR public data.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {
      "cik": {
       "type": "string",
       "description": "SEC CIK (zero-padded or numeric, e.g. '0000320193'). Use when ticker is ambiguous or unavailable."
      },
      "limit": {
       "type": "number",
       "description": "Max earnings-related filings to return. 1-50. Default 8."
      },
      "ticker": {
       "type": "string",
       "description": "US-listed ticker (e.g. 'AAPL', 'MSFT'). Either ticker or cik is required."
      },
      "upcoming_only": {
       "type": "boolean",
       "description": "If true, only returns the next-earnings estimate plus future-dated filings (skips historical events). Default false."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "cik": {
       "type": "string"
      },
      "events": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "type": {
          "type": "string"
         },
         "filed_date": {
          "type": "string"
         },
         "description": {
          "type": "string"
         },
         "report_period": {
          "type": "string"
         },
         "accession_number": {
          "type": "string"
         },
         "fiscal_quarter_end": {
          "type": "string"
         },
         "primary_document_url": {
          "type": "string"
         }
        }
       }
      },
      "source": {
       "type": "string"
      },
      "ticker": {
       "type": "string"
      },
      "event_count": {
       "type": "integer"
      },
      "company_name": {
       "type": "string"
      },
      "next_earnings_estimate": {
       "type": "string"
      },
      "next_earnings_estimate_method": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-deployer-x402-deployer-workers-dev-898fc32c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-deployer.x402-deployer.workers.dev](https://www.zero.xyz/host/x402-deployer.x402-deployer.workers.dev/llms.txt)
