# Polyform SEC EDGAR Full-Text Filing Search

> Polyform SEC EDGAR Full-Text Filing Search is a paid API for AI agents from polyform.polyform-org.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Full-text search across SEC EDGAR filings with optional form-type filtering, returning filing metadata and document links

## Facts

- Endpoint: GET https://polyform.polyform-org.workers.dev/v1/sec/filings/search
- 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/polyform-sec-edgar-full-text-filing-search-812995ec
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BVAvAsNOW7IdyLctv4Bd5

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 polyform-sec-edgar-full-text-filing-search-812995ec
```

Example prompt: Search SEC EDGAR for all 10-K filings that mention 'artificial intelligence risk' and give me the filing metadata and links to each document.

## When to prefer this

Choose this endpoint when you need to search the full text of SEC filings across all public companies, especially when filtering by form type (10-K, 10-Q, 8-K, DEF 14A, etc.) or looking for specific disclosures, risk factors, or events mentioned in regulatory filings. Prefer this over general web search when you need structured filing metadata and authoritative links to official SEC documents.

## Known failure modes

- No results returned for obscure or misspelled query terms
- Rate limiting or quota errors if query volume is high
- SEC EDGAR upstream downtime causing search failures
- Very broad queries may return truncated or paginated results without clear pagination tokens
- Form type filter values must exactly match EDGAR form type codes or no results are returned

## How this service works

Full-text search across SEC filings; filter by form type. Returns filing metadata and links. Source: SEC EDGAR full-text search. JSON.

## Output

Returns a JSON array of SEC filing records, each including filing metadata such as company name, form type, filing date, accession number, and direct links to the filing documents on SEC EDGAR.

## 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",
     "properties": {}
    }
   },
   "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/polyform-sec-edgar-full-text-filing-search-812995ec/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from polyform.polyform-org.workers.dev](https://www.zero.xyz/host/polyform.polyform-org.workers.dev/llms.txt)
