# AgentFiling SEC EDGAR Recent Filings

> AgentFiling SEC EDGAR Recent Filings is a paid API for AI agents from filing.memoryapi.org, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Retrieves the most recent SEC EDGAR filings for a given public company ticker, including 8-K material events, earnings, and insider trading reports.

## Facts

- Endpoint: GET https://filing.memoryapi.org/x402/filing/recent
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentfiling-sec-edgar-recent-filings-5a0d1d44
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BP9zpa_OSY7NcTCVM-N8u

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 agentfiling-sec-edgar-recent-filings-5a0d1d44
```

Example prompt: Pull up the most recent SEC filings for Apple (AAPL) — I want to see the latest 8-Ks and any material event disclosures they've submitted.

## When to prefer this

Use this endpoint when you need fast, structured access to recent SEC EDGAR filings for a specific public company by ticker, especially for 8-K material events, insider trading forms, and earnings filings. Prefer this over scraping SEC.gov directly when you need clean structured output with form descriptions. Best for agentic workflows that need to monitor or summarize a company's recent regulatory disclosures.

## Known failure modes

- Unknown or invalid ticker symbol returns empty results or error
- Company not found on SEC EDGAR (e.g. private company) returns no filings
- Payment failure in x402 USDC flow prevents access to results
- Rate limiting or quota exceeded returns 402 or 429 error
- Network timeout if SEC EDGAR upstream is slow

## How this service works

x402-powered SEC EDGAR filing intelligence. Get insider trading, earnings data, material events, and recent filings for any public company. Pay per query in USDC on Base mainnet.

## Output

Returns a list of recent SEC EDGAR filings for the requested ticker, including the form type (e.g. 8-K, 10-Q), a human-readable description of the form, the filing date, and a direct URL to the filing on SEC.gov, along with the company name and total count of filings returned.

## Example request

```json
{
 "unit": "USD",
 "ticker": "AAPL",
 "concept": "revenue"
}
```

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "properties": {
    "method": {
     "type": "string",
     "enum": [
      "GET"
     ]
    }
   },
   "required": [
    "method"
   ]
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {
  "count": 5,
  "ticker": "AAPL",
  "company": "Apple Inc.",
  "filings": [
   {
    "url": "https://sec.gov/...",
    "date": "2026-05-01",
    "form": "8-K",
    "form_description": "Current Report (Material Event)"
   }
  ],
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentfiling-sec-edgar-recent-filings-5a0d1d44/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from filing.memoryapi.org](https://www.zero.xyz/host/filing.memoryapi.org/llms.txt)
