# SEC EDGAR Recent Filings Search

> SEC EDGAR Recent Filings Search is a paid API for AI agents from edgar-x402.vercel.app, paid per call via x402, $0.003/call, status down (last checked 2026-09-15).

Search SEC EDGAR recent filings by company name or topic, with optional filtering by form type (10-K, 10-Q, 8-K, S-1, etc.), returning filing date, period, and direct URL.

## Facts

- Endpoint: GET https://edgar-x402.vercel.app/edgar/filings
- Price: $0.003/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/edgar-x402-vercel-app-48855f9c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_N6snK31tvmh5JimAN0bhg

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-x402-vercel-app-48855f9c
```

Example prompt: Search SEC EDGAR for recent 10-K annual report filings from Tesla and show me the filing dates and links — get up to 5 results.

## When to prefer this

Use this endpoint when you need to search for SEC filings across multiple companies or by topic keyword rather than looking up a single known company by ticker. Ideal for discovering recent filings of a specific form type (e.g., all recent S-1s or 8-Ks), researching regulatory disclosures, or finding filings when the exact ticker or CIK is unknown. Prefer the company profile endpoint when you have a specific ticker and want a structured company overview.

## Known failure modes

- No filings found for the given search term — returns empty filings array with total 0
- Invalid form type filter — may return all form types or an error
- Query parameter 'q' missing — returns 400 Bad Request
- Limit exceeds maximum of 50 — may be capped or return an error
- Payment not provided or insufficient — returns 402 Payment Required
- Rate limiting or server error — returns 429 or 500 status

## How this service works

Search SEC EDGAR recent filings by company name or topic. Filter by form type (10-K, 10-Q, 8-K, S-1, DEF14A, etc.). Returns filing date, period, and direct URL.

## Output

Returns a JSON object with the original query string, total number of matching filings, and an array of filing objects each containing the company name, form type, filing date, period of report, and a direct URL to the filing on SEC EDGAR.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "q": "Tesla",
   "form": "10-K",
   "limit": "5"
  }
 }
}
```

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Company name or search term"
      },
      "form": {
       "type": "string",
       "description": "Filing form type: 10-K, 10-Q, 8-K, S-1, DEF14A, 4 (default: all)"
      },
      "limit": {
       "type": "string",
       "description": "Number of results (default 10, max 50)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "query": {
       "type": "string"
      },
      "total": {
       "type": "number"
      },
      "filings": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/edgar-x402-vercel-app-48855f9c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from edgar-x402.vercel.app](https://www.zero.xyz/host/edgar-x402.vercel.app/llms.txt)
