# EDGAR Filings Lookup via OpenVerbs

> EDGAR Filings Lookup via OpenVerbs is a paid API for AI agents from edgar.openverbs.com, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-14).

Returns a company's most recent SEC EDGAR filings, filtered optionally by form type, given a ticker or CIK identifier.

## Facts

- Endpoint: POST https://edgar.openverbs.com/v1/filings
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/edgar-filings-lookup-via-openverbs-3f11e62c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QrXu2DOPkpxbi-ruJdKJV

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 edgar-filings-lookup-via-openverbs-3f11e62c -d '<json body>'
```

Example prompt: Can you pull the last 10 SEC filings for Apple — ticker AAPL — and filter it to just 10-K annual reports?

## When to prefer this

Use this endpoint when you need structured, up-to-date SEC filing metadata for a specific public company identified by ticker or CIK, especially when you want to filter to a specific form type (10-K, 10-Q, 8-K, S-1, Form 4, etc.). Prefer this over scraping SEC.gov directly for reliability and structured JSON output.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty results
- CIK not found in SEC database returns an error
- Invalid form type filter returns empty results or error
- Rate limiting or SEC API downtime causes request failure
- Providing both CIK and ticker may cause ambiguity or conflict

## How this service works

List a company's most recent EDGAR filings, identified by CIK or ticker. Optionally filter to a single form type (e.g. 10-K, 10-Q, 8-K, 4, S-1). Each filing includes its accession number, form type, filing and report dates, the primary document name, whether it carries XBRL, and a direct URL to the as-filed document. Also returns company name, tickers, exchanges and SIC industry code.

## Output

Returns a list of the company's most recent EDGAR filings including accession number, form type, filing date, report date, primary document filename, whether XBRL is present, and a direct URL to the as-filed document. Also includes the company name, associated tickers, exchanges, and SIC industry code.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "cik": {
       "type": "string",
       "minLength": 1,
       "maxLength": 10,
       "description": "Central Index Key (1-10 digits). Provide this or `ticker`."
      },
      "ticker": {
       "type": "string",
       "minLength": 1,
       "maxLength": 10,
       "description": "Ticker symbol, e.g. \"AAPL\". Provide this or `cik`."
      },
      "form": {
       "type": "string",
       "minLength": 1,
       "maxLength": 20,
       "description": "Optional exact form type filter, e.g. \"10-K\"."
      },
      "limit": {
       "type": "integer",
       "minimum": 1,
       "maximum": 100,
       "default": 20,
       "description": "Max filings to return (default 20)."
      }
     },
     "required": [],
     "additionalProperties": false
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/edgar-filings-lookup-via-openverbs-3f11e62c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from edgar.openverbs.com](https://www.zero.xyz/host/edgar.openverbs.com/llms.txt)
