# AnswerPool Filing Calendar

> AnswerPool Filing Calendar is a paid API for AI agents from answerpool.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns a public company's SEC filing cadence including fiscal year end, last 10-K/10-Q dates, recent quarterly dates, and naive next-report estimates derived from historical spacing.

## Facts

- Endpoint: GET https://answerpool.io/v1/sec/calendar
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/answerpool-filing-calendar-0c2e98ed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GbTYFlDVOLwr82gUDoWC0

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 answerpool-filing-calendar-0c2e98ed
```

Example prompt: What's Apple's SEC filing calendar — when did they last file a 10-K and 10-Q, and when are the next ones expected? Use their ticker AAPL.

## When to prefer this

Use this endpoint when you need a quick, pre-derived summary of a company's SEC reporting cadence without parsing raw EDGAR filings yourself. It is ideal for scheduling monitoring windows, confirming fiscal year ends, or checking when annual/quarterly reports were last filed. Prefer this over raw EDGAR queries when you only need cadence metadata and not the filing content itself. It complements the AnswerPool Filing Cadence endpoint (year-by-year counts) by providing absolute dates and forward-looking estimates.

## Known failure modes

- Neither ticker nor CIK provided — returns error requiring at least one identifier
- Unknown ticker or CIK not found in EDGAR — returns null dates or empty response
- Company has irregular filing history — naive cadence estimates may be inaccurate or null
- Network timeout or upstream EDGAR unavailability — may return 5xx error
- Invalid CIK format (non-numeric or too long) — schema validation error

## How this service works

AnswerPool turns SEC EDGAR, the Federal Register, USAspending, NIH, BLS and OpenAlex into structured JSON answers that AI agents and developers fetch in one call. 69 endpoints free, no account; derived analyses $0.02–$0.05 per call by card credits or USDC (x402). MCP server, full provenance.

## Output

Returns a JSON object with the company's CIK, fiscal year end (month-day string), the date of the last 10-K filed, the date of the last 10-Q filed, an array of recent 10-Q filing dates, a naive estimate for the next expected 10-Q date, a naive estimate for the next expected 10-K date, and an as-of timestamp. Includes a note that expected dates are estimates from historical cadence and a disclaimer that the data is derived from public SEC EDGAR filings and is not investment advice.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "title": "TickerCikIn",
     "properties": {
      "cik": {
       "anyOf": [
        {
         "type": "string",
         "pattern": "^\\d{1,10}$",
         "maxLength": 10
        },
        {
         "type": "null"
        }
       ],
       "title": "Cik",
       "default": null,
       "description": "SEC CIK, 1-10 digits, zero padding optional (e.g. 320193 or 0000320193). Provide exactly one of cik or ticker."
      },
      "ticker": {
       "anyOf": [
        {
         "type": "string",
         "maxLength": 12
        },
        {
         "type": "null"
        }
       ],
       "title": "Ticker",
       "default": null,
       "description": "US exchange ticker, case-insensitive (e.g. AAPL); resolved through the EDGAR ticker map, and an unknown ticker returns 422. Provide exactly one of ticker or cik."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cik": "0000320193",
  "as_of": "2026-08-31T14:00:00Z",
  "last_10k_filed": "2025-11-01",
  "last_10q_filed": "2026-08-01",
  "fiscal_year_end": "0927",
  "recent_10q_dates": [
   "2026-08-01",
   "2026-05-02",
   "2026-01-31"
  ],
  "expected_next_10k": "2026-11-01",
  "expected_next_10q": "2026-10-31"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/answerpool-filing-calendar-0c2e98ed/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from answerpool.io](https://www.zero.xyz/host/answerpool.io/llms.txt)
