# SEC EDGAR Filing Verification & Settlement Evidence

> SEC EDGAR Filing Verification & Settlement Evidence is a paid API for AI agents from aeml-x402.zeabur.app, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-13).

Determines whether a company filed a specific SEC form before a given cutoff date, returning time-separated evidence (event/disclosure/cutoff), a resolution status, candidate sources, and an offline-verifiable citation signature.

## Facts

- Endpoint: GET https://aeml-x402.zeabur.app/resolve
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-edgar-filing-verification-settlement-evidence-d659c43c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IExV255DXR7UcIZk_uCno

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 sec-edgar-filing-verification-settlement-evidence-d659c43c
```

Example prompt: Can you check SEC EDGAR and tell me whether AMC Entertainment filed a Form 10-K before January 1, 2023 — I need the filing time, disclosure time, and a verifiable citation showing whether it was resolved or ambiguous?

## When to prefer this

Choose this endpoint when you need authoritative, auditable proof of whether a specific SEC filing was submitted before a cutoff date — especially for legal, compliance, or financial settlement contexts where offline-verifiable citations are required. Prefer this over general web search when you need structured time-separated evidence (event vs. disclosure vs. cutoff) and an explicit resolution status rather than a narrative answer. Ideal for event-driven trading research, regulatory compliance checks, and litigation support.

## Known failure modes

- Filing not found in EDGAR returns resolution_status: no_authoritative_source with null filed_by_cutoff
- Conflicting records between EDGAR indexes return resolution_status: conflicting
- Ambiguous form type or issuer name returns resolution_status: ambiguous
- Malformed or missing query parameters return an error response
- Very recent filings may not yet be indexed, yielding no_authoritative_source
- Cutoff date parsing errors if date format is not recognized

## How this service works

Settlement evidence v0 for prediction-market and dispute workflows: did an issuer file a given SEC EDGAR form before your cutoff? Returns THREE SEPARATED TIMES (event / disclosure / cutoff), a resolution_status of resolved, no_authoritative_source, ambiguous or conflicting, and candidate_sources. We describe the filing record; we never adjudicate the real-world event. Descriptive only, never a forecast or advice. No data -> 422 no_charge, not billed.

## Output

Returns a JSON object with: event_time (when the filing event occurred), cutoff_time (the evaluated deadline), disclosure_time (when it was publicly disclosed on EDGAR), filed_by_cutoff (boolean or null if unresolvable), resolution_status (one of: resolved, no_authoritative_source, ambiguous, conflicting), candidate_sources (array of authoritative references), and _citation (an offline-verifiable signed citation object for audit or dispute use). Ambiguous or silent cases return explicit unresolved status rather than speculation.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "entity",
      "form",
      "cutoff"
     ],
     "properties": {
      "form": {
       "type": "string",
       "examples": [
        "10-K"
       ],
       "description": "required - filing type (e.g. 10-K, 8-K, NT 10-K, SC 13D, 4)"
      },
      "cutoff": {
       "type": "string",
       "examples": [
        "2025-01-01"
       ],
       "description": "required - settlement cutoff, ISO 8601 (e.g. 2026-07-31 or 2026-07-31T23:59:59Z)"
      },
      "entity": {
       "type": "string",
       "examples": [
        "AAPL"
       ],
       "description": "required - ticker or CIK (e.g. AAPL or 320193)"
      },
      "event_class": {
       "type": "string",
       "description": "optional - 8-K item (e.g. 1.03 bankruptcy)"
      },
      "source_class": {
       "type": "string",
       "description": "optional - defaults to sec-edgar (the only source in v0)"
      },
      "market_or_event": {
       "type": "string",
       "description": "optional - market/event label, echoed back verbatim"
      }
     },
     "additionalProperties": false
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "const": "json"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sec-edgar-filing-verification-settlement-evidence-d659c43c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aeml-x402.zeabur.app](https://www.zero.xyz/host/aeml-x402.zeabur.app/llms.txt)
