# SEC EDGAR Filings Lookup

> SEC EDGAR Filings Lookup is a paid API for AI agents from autoscrape-api-seven.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches SEC EDGAR filings (10-K, 10-Q, 8-K, etc.) for public companies by ticker, CIK, or company name

## Facts

- Endpoint: GET https://autoscrape-api-seven.vercel.app/x402/v1/sec-edgar/filings
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/autoscrape-api-seven-vercel-app-30169d4c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kYQQiMd_uYimsQGCE7bZc

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 autoscrape-api-seven-vercel-app-30169d4c
```

Example prompt: Pull the last 5 SEC filings for Tesla — I want 10-K and 10-Q reports specifically — so I can review their recent financial disclosures.

## When to prefer this

Use this endpoint when you need structured access to official SEC EDGAR filings for public U.S. companies — especially for investor research, due diligence, financial analysis, or compliance checks. Prefer ticker-based queries for exact matching. Best suited for retrieving specific form types (10-K, 10-Q, 8-K) rather than broad document search.

## Known failure modes

- Unknown ticker or company name returns empty results or a not-found error
- Invalid CIK format returns a validation error
- No filings found for the specified form type returns an empty array
- Network or upstream EDGAR API timeout returns a 5xx error
- Missing required 'input' field returns a 400 validation error

## How this service works

SEC EDGAR filings, 10-K and 10-Q reports, public company research, investor due diligence, and financial due diligence evidence

## Output

Returns a list of SEC EDGAR filing records matching the query, including filing type (e.g. 10-K, 10-Q, 8-K), filing date, company name, CIK, and links or metadata for each document, up to the specified maxFilings count.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "tickers": "AAPL",
   "formTypes": "10-K,10-Q",
   "maxFilings": "5"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "filings": [
   {
    "form": "10-K",
    "ticker": "AAPL",
    "sourceUrl": "https://www.sec.gov/edgar/",
    "accessionNumber": "example"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/autoscrape-api-seven-vercel-app-30169d4c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from autoscrape-api-seven.vercel.app](https://www.zero.xyz/host/autoscrape-api-seven.vercel.app/llms.txt)
