# SEC Form 4 Insider Trading Filings Feed

> SEC Form 4 Insider Trading Filings Feed is a paid API for AI agents from cycle-angela-lamp-hamburg.trycloudflare.com, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Returns the latest 40 SEC Form 4 insider trading filings including company, filer, filing date, and EDGAR document links

## Facts

- Endpoint: GET https://cycle-angela-lamp-hamburg.trycloudflare.com/api/us/insider-filings
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-form-4-insider-trading-filings-feed-bc5ad35c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_n9if6DhAxmNzR7i4uE2rW

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 sec-form-4-insider-trading-filings-feed-bc5ad35c
```

Example prompt: Pull up the latest SEC Form 4 insider trading filings — I want to see who's been buying or selling their own company's stock, which companies are involved, and links to the actual EDGAR documents.

## When to prefer this

Use this endpoint when you need a quick, pre-aggregated feed of the most recent SEC Form 4 insider trading filings across all US public companies without building your own EDGAR scraper. Prefer this over direct EDGAR queries when you need low-latency, structured JSON output ready for downstream analysis. Best for monitoring recent insider activity broadly rather than filtering by a specific company or individual.

## Known failure modes

- SEC EDGAR upstream unavailable — empty or stale filings array returned
- Payment not processed (x402 protocol) — 402 response blocking data access
- Cloudflare tunnel instability causing timeouts or 5xx errors
- generated_at timestamp significantly stale if upstream feed is lagging
- Missing filer or company fields if SEC source data is incomplete

## How this service works

SEC Form 4 insider trading filings: latest insider buys and sells, company, filer, filing time, document link. JSON array. US stock insider transaction feed from SEC EDGAR.

## Output

A JSON object containing an array of up to 40 recent Form 4 insider trading filings, each with the form type, company name, filer name, filing date (YYYY-MM-DD), and a direct SEC EDGAR document URL, plus a unix timestamp of when the payload was generated.

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "filings": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "doc": {
      "type": "string",
      "description": "SEC EDGAR document URL"
     },
     "form": {
      "type": "string"
     },
     "company": {
      "type": "string"
     },
     "filed_at": {
      "type": "string",
      "description": "YYYY-MM-DD"
     }
    }
   },
   "description": "latest 40 insider (Form 4) filings"
  },
  "generated_at": {
   "type": "integer",
   "description": "unix seconds when payload was built"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sec-form-4-insider-trading-filings-feed-bc5ad35c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cycle-angela-lamp-hamburg.trycloudflare.com](https://www.zero.xyz/host/cycle-angela-lamp-hamburg.trycloudflare.com/llms.txt)
