# fittings SEC Filing Full-Text Search

> fittings SEC Filing Full-Text Search is a paid API for AI agents from fittings.sh, paid per call via x402, $0.00698/call, status unknown (last checked 2026-09-15).

Full-text search across SEC filings from 2001 onward, returning filing type, date, company name, and accession number.

## Facts

- Endpoint: GET https://fittings.sh/v1/sec/filing-search
- Price: $0.00698/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fittings-sec-filing-full-text-search-1467bc16
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PL4ozT4pEMkRggDQATS9g

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 fittings-sec-filing-full-text-search-1467bc16
```

Example prompt: Search SEC filings for any 10-K that mentions 'climate transition risk' and show me the top 10 results with the company name, filing date, and accession number.

## When to prefer this

Use this endpoint when you need to find SEC filings by keyword or phrase across the full text of EDGAR documents rather than by company ticker or CIK. It is ideal for thematic research, due diligence, compliance monitoring, or investigative tasks where you know what language appears in a filing but not which specific company filed it. Prefer this over EDGAR's native search when you need a clean JSON response suitable for agent workflows.

## Known failure modes

- No results returned if the search phrase is too specific or not present in any indexed filing
- Missing or invalid 'q' parameter returns a validation error
- Form filter typo (e.g. '10k' instead of '10-K') may yield no results
- Limit outside 1–100 range may be rejected or clamped
- EDGAR full-text index only covers filings from 2001 onward; earlier filings will not appear

## How this service works

Search the full text of SEC filings from 2001 onward, returning filing type, date, company and accession number.

## Output

Returns a list of matching SEC filings, each including the filing form type (e.g. 10-K, 8-K), the filing date, the company name, and the accession number that can be used to retrieve the full document from 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",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Search phrase"
      },
      "forms": {
       "type": "string",
       "description": "Optional form filter, e.g. 10-K"
      },
      "limit": {
       "type": "number",
       "description": "1-100, default 10"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fittings-sec-filing-full-text-search-1467bc16/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fittings.sh](https://www.zero.xyz/host/fittings.sh/llms.txt)
