# AgentFund SEC Insider Transactions (Form 4)

> AgentFund SEC Insider Transactions (Form 4) is a paid API for AI agents from x402.agentfund.net, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Fetches and parses recent SEC insider transaction filings (Forms 3, 4, 5) for a given company ticker or CIK from EDGAR

## Facts

- Endpoint: POST https://x402.agentfund.net/x402/edgar_insider_transactions
- Price: $0.02/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-insider-transactions-form-4-5df8bd33
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IORN4A6mwObkcSYDuCh0N

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-insider-transactions-form-4-5df8bd33 -d '<json body>'
```

Example prompt: Pull the last 10 SEC Form 4 insider transaction filings for NVDA from EDGAR so I can see whether executives have been buying or selling shares recently.

## When to prefer this

Use this endpoint when you need structured, parsed insider transaction data directly from SEC EDGAR for a specific US-listed company, particularly when you need Form 3, 4, or 5 data quickly without scraping EDGAR manually. Prefer this over generic SEC filing feeds when you specifically want insider activity signals for investment research, compliance monitoring, or alerting workflows.

## Known failure modes

- Invalid or unknown ticker symbol returns no results or an error
- CIK not found in EDGAR database returns empty result
- Limit out of range (below 1 or above 20) may return an error or be clamped to defaults
- Company with no recent insider filings returns empty list
- EDGAR service temporarily unavailable causes request failure
- Rate limiting or payment failure (x402) blocks the request

## How this service works

SEC Insider Transactions (Form 4)

## Output

Returns a parsed list of recent SEC insider transaction filings for the specified ticker or CIK, including details such as the insider's name, role/title, form type, transaction date, number of shares traded, price per share, and transaction type (buy/sell/grant). Up to 20 of the most recent filings are returned.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "forms": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Forms: \"3\", \"4\", \"5\"."
  },
  "limit": {
   "type": "number",
   "description": "Recent filings to parse (1-20, default 5)."
  },
  "ticker": {
   "type": "string",
   "description": "Ticker (e.g. \"AAPL\") or CIK."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cik": "0000320193",
  "count": 1,
  "issuer": "Apple Inc.",
  "ticker": "AAPL",
  "filings": [
   {
    "owner": "Newstead Jennifer",
    "filedAt": "2026-08-13",
    "ownerTitle": "SVP, GC and Secretary",
    "transactions": [
     {
      "code": "S",
      "date": "2026-08-11",
      "value": 442852.25,
      "shares": 1439,
      "codeMeaning": "Open-market or private sale",
      "pricePerShare": 307.75
     }
    ]
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentfund-sec-insider-transactions-form-4-5df8bd33/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)
