# AgentFund SEC Filings Feed

> AgentFund SEC Filings Feed is a paid API for AI agents from x402.agentfund.net, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Retrieves a feed of recent SEC filings for a specific company by ticker or CIK, optionally filtered by form type and count

## Facts

- Endpoint: POST https://x402.agentfund.net/x402/edgar_filings_feed
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentfund-sec-filings-feed-2716bdae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w2Sj4ezeys5drT23HcnLF

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 agentfund-sec-filings-feed-2716bdae -d '<json body>'
```

Example prompt: Pull the last 10 SEC filings for AAPL — I want 8-K and 10-Q forms only.

## When to prefer this

Use this endpoint when you need a structured feed of recent SEC filings for a specific public company, especially when filtering by form type (e.g. 8-K, 10-K, 10-Q). Prefer this over SEC Full-Text Filing Search when you know the company identifier and want a list of filings rather than searching by content keywords. Choose this over SEC 13F Institutional Holdings when you need general filing history rather than institutional ownership data.

## Known failure modes

- Invalid or unknown ticker symbol returns no results or an error
- CIK not found in EDGAR database
- Requested form type has no filings for the company
- Limit out of range (must be 1-100) causes validation error
- Network or upstream EDGAR API outage returns service error
- Payment failure (insufficient USDC balance) blocks the request

## How this service works

SEC Filings Feed

## Output

A feed of SEC filing records for the specified company, including form type, filing date, and relevant metadata as returned from EDGAR, filtered by the requested form types and capped at the specified limit.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "forms": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "e.g. [\"8-K\"]."
  },
  "limit": {
   "type": "number",
   "description": "Max filings (1-100, default 20)."
  },
  "ticker": {
   "type": "string",
   "description": "Ticker (e.g. \"AAPL\") or CIK."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cik": "0000320193",
  "count": 1,
  "entity": "Apple Inc.",
  "filings": [
   {
    "form": "8-K",
    "items": [
     {
      "code": "2.02",
      "label": "Results of operations and financial condition"
     }
    ],
    "filedAt": "2026-08-01"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentfund-sec-filings-feed-2716bdae/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agentfund.net](https://www.zero.xyz/host/x402.agentfund.net/llms.txt)
