# SuVerse SEC EDGAR Filings API

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

Retrieves the latest SEC EDGAR filings for any US-listed company, including 10-K, 10-Q, 8-K, S-1, and Form 4 insider transactions, with filing dates, form types, accession numbers, and direct document URLs.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-sec-filings
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proxy-suverse-io-99ecf8d3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xmYtCCHSC7bL3EzAVoN53

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 proxy-suverse-io-99ecf8d3 -d '<json body>'
```

Example prompt: Pull the latest SEC EDGAR filings for Nvidia — I want to see any recent 8-K material events, the most recent 10-K annual report, and any Form 4 insider transactions filed in the last few months.

## When to prefer this

Use this endpoint when you need structured access to official SEC EDGAR filings for any US-listed company, especially for tracking material corporate events (8-K), annual/quarterly financials (10-K/10-Q), IPO filings (S-1), or insider buying/selling activity (Form 4). Prefer this over manual EDGAR searches when an AI agent needs to programmatically retrieve and act on regulatory disclosures.

## Known failure modes

- Unknown or invalid ticker/company returns empty results or error
- Company not listed on a US exchange returns no filings
- SEC EDGAR rate limiting or downtime causes retrieval failure
- Very recently listed companies may have sparse filing history
- Malformed request body returns 400 error

## How this service works

Latest SEC EDGAR filings for any US-listed company: 10K annual, 10Q quarterly, 8K material events, S1 IPO, Form 4 insider transactions. Returns date, form type, accession number, direct filing URL. AI agent corporate event tracker, insider activity bot, equity research API.

## Output

Returns a list of the most recent SEC EDGAR filings for the specified company, each including the filing date, form type (e.g. 10-K, 10-Q, 8-K, S-1, Form 4), accession number, and a direct URL to the filing document on SEC EDGAR.

## Example request

```json
{
 "input": {
  "body": {
   "limit": 10,
   "ticker": "AAPL",
   "form_types": [
    "10-K",
    "10-Q",
    "8-K",
    "Form 4"
   ]
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## 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/proxy-suverse-io-99ecf8d3/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)
