# Suverse SEC EDGAR Submission History

> Suverse SEC EDGAR Submission History is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.007/call, status unknown (last checked 2026-09-14).

Returns recent SEC EDGAR filing history (10-K, 10-Q, 8-K, etc.) with accession numbers, dates, and entity profile for a US public company identified by CIK

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-sec-submissions
- Price: $0.007/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-sec-edgar-submission-history-6e44f5cf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Cd2PWcgel8ZRZu7hy-Wgx

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 suverse-sec-edgar-submission-history-6e44f5cf -d '<json body>'
```

Example prompt: Pull the recent SEC EDGAR submission history for Apple — CIK 0000320193 — and show me the latest 10-K, 10-Q, and 8-K filings with their accession numbers and dates.

## When to prefer this

Use this endpoint when you need structured SEC filing history for a specific US public company and already know or can look up their CIK. It is ideal for monitoring corporate disclosures, tracking 8-K material events, verifying annual/quarterly report cadence, or performing due diligence. Prefer this over raw SEC EDGAR API calls for a normalized, agent-friendly response with entity profile included.

## Known failure modes

- Invalid or unknown CIK returns no results or an error
- CIK for a private company (not registered with SEC) returns empty results
- Rate limiting from the underlying SEC EDGAR API causing timeouts
- Malformed request body (missing required fields) returns a validation error
- Very recently filed documents may not yet appear in the submission history

## How this service works

Recent SEC EDGAR submission history for a US public company by CIK: 10-K, 10-Q, 8-K and other forms with accession numbers and dates, plus entity profile. For AI agents monitoring corporate disclosures, material events, and filing cadence.

## Output

A structured response containing the company's SEC EDGAR entity profile (name, SIC code, etc.) and a chronological list of recent submissions including form type (10-K, 10-Q, 8-K, etc.), accession numbers, and filing dates, enabling analysis of filing frequency and identification of material disclosures.

## 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": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-sec-edgar-submission-history-6e44f5cf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
