# Macaroon Network SEC EDGAR Full-Text Filing Search

> Macaroon Network SEC EDGAR Full-Text Filing Search is a paid API for AI agents from api.macaroonnetwork.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Search a bounded snapshot of SEC EDGAR full-text filings (10-K, 10-Q, 8-K) by keyword, company, CIK, form type, and filing date.

## Facts

- Endpoint: POST https://api.macaroonnetwork.com/execute/sec-filing-search-v1
- 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/macaroon-network-sec-edgar-full-text-filing-search-13b835e5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PRXN1kG4hXdBR91srjMjO

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 macaroon-network-sec-edgar-full-text-filing-search-13b835e5 -d '<json body>'
```

Example prompt: Search SEC EDGAR for 10-K annual report filings from Tesla (CIK 1318605) filed between 2022-01-01 and 2024-01-01 mentioning 'supply chain risk'.

## When to prefer this

Use this endpoint when you need to search the full text of SEC EDGAR filings (10-K, 10-Q, 8-K) by keyword, company, CIK, form type, or date — particularly for investment research, compliance checks, competitive intelligence, or regulatory analysis involving public company disclosures. Prefer this over general web search when you need structured, authoritative SEC filing data rather than news or secondary sources.

## Known failure modes

- Keyword returns no results if filing snapshot does not cover the requested date range
- CIK not found if company is not publicly listed or not in the bounded snapshot
- Form type filter returns empty if company did not file that form type in the period
- Overly broad keyword queries may return too many results without sufficient filtering
- Date range outside the snapshot window returns no results or partial data

## How this service works

Search a bounded snapshot of SEC EDGAR full-text filings (10-K, 10-Q, 8-K) by keyword -- company, CIK, form type, and filing date.

## Output

Returns a list of matching SEC filing records from the EDGAR snapshot, including company name, CIK, form type (10-K, 10-Q, 8-K), filing date, and relevant text excerpts or metadata matching the search query.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/macaroon-network-sec-edgar-full-text-filing-search-13b835e5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.macaroonnetwork.com](https://www.zero.xyz/host/api.macaroonnetwork.com/llms.txt)
