# AnswerPool Restatement Filings

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

Lists SEC 8-K filings disclosing non-reliance on previously issued financials (Item 4.02) — a pre-filtered restatement alert feed across all public companies.

## Facts

- Endpoint: GET https://answerpool.io/v1/sec/8k/restatement
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/answerpool-restatement-filings-3024f67f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D5W7c3w4V1V499949A53a

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-restatement-filings-3024f67f
```

Example prompt: Pull the last 50 SEC restatement filings from AnswerPool — companies that declared non-reliance on their financials (8-K Item 4.02) — going back to August 1st, 2026, and give me the tickers, company names, and filing links.

## When to prefer this

Use this endpoint instead of manually filtering a raw 8-K feed when you specifically need Item 4.02 non-reliance disclosures — the rarest and highest-salience accounting event in SEC filings. It is pre-filtered, saving the cost and complexity of parsing the full 8-K tape yourself. Prefer it over AnswerPool's generic 8-K item endpoint when restatements are your sole focus, and over the Distress Screen when you want only the restatement signal without blending it with bankruptcy or delisting noise.

## Known failure modes

- Invalid 'since' date format returns a 400 validation error
- Limit out of range (below 1 or above 200) returns a 422 unprocessable entity
- No restatements in the requested window returns an empty events array with count 0
- Payment not included or insufficient USDC triggers a 402 Payment Required response
- Stale index: filings from the last 15 minutes may not yet be indexed

## 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 a timestamp, a count of matched events, and an array of restatement events — each containing event ID, accession number, CIK, ticker, company name, form type (8-K), event type, occurrence timestamp, flags, a relevance score, a payload with filing details, and a direct SEC filing URL. Also includes metadata like the index start time and a since cursor for pagination.

## 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": "WindowIn",
     "properties": {
      "limit": {
       "type": "integer",
       "title": "Limit",
       "default": 50,
       "maximum": 200,
       "minimum": 1,
       "description": "Maximum 8-K events of this view's event type returned, newest first; 1 to 200, default 50."
      },
      "since": {
       "anyOf": [
        {
         "type": "string",
         "maxLength": 32
        },
        {
         "type": "null"
        }
       ],
       "title": "Since",
       "default": null,
       "description": "Earliest event time, ISO 8601 date or timestamp (e.g. 2026-08-01 or 2026-08-01T00:00:00Z); UTC if no offset, capped at 90 days back. Omit for this view's own default window of 7 to 30 recent days."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-08-31T14:00:00Z",
  "count": 0,
  "since": "2026-08-01T00:00:00",
  "events": [],
  "next_cursor": "2026-08-01T00:00:00",
  "index_started_at": "2026-08-27T00:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/answerpool-restatement-filings-3024f67f/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)
