# SEC Form 4 Insider Trading Feed

> SEC Form 4 Insider Trading Feed is a paid API for AI agents from x402.agentutility.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches recent SEC Form 4 insider transactions (buys, sells, grants, exercises) for any US-listed ticker from EDGAR

## Facts

- Endpoint: POST https://x402.agentutility.ai/insider-trading
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-agentutility-ai-db2087bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5hniKB96yn77ns2xKPpJN

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 x402-agentutility-ai-db2087bd -d '<json body>'
```

Example prompt: Pull the most recent SEC Form 4 insider transactions for NVDA — I want to see whether any officers or directors have been buying or selling shares, with the transaction type, number of shares, price, and their post-trade holdings.

## When to prefer this

Choose this endpoint when you need structured, machine-readable insider transaction data (Form 4) for a US-listed ticker without building your own EDGAR scraper. Ideal for financial research agents, stock screeners, or investment due-diligence workflows that need to flag unusual insider buying or selling. Prefer over raw EDGAR access for its clean JSON output and search-friendly interface.

## Known failure modes

- Unknown or invalid ticker returns empty results or 404-style error
- OTC or foreign-listed tickers not covered by EDGAR may return no data
- Very recent filings may have a lag before appearing in EDGAR
- Payment failure (insufficient USDC balance) prevents call from completing
- Rate limiting if called in rapid succession

## How this service works

Insider trading feed. Recent SEC Form 4 transactions for any US-listed ticker — officer, director, and 10% beneficial owner buys and sells. Returns transaction code (P=purchase, S=sale, A=grant, M=exercise), shares, price, post-transaction holdings, filed date, and EDGAR document URL. Wraps the same EDGAR-backed source as insider-form-4 under a more search-friendly name. Federal public data, no auth.

## Output

Returns a list of recent Form 4 transactions for the requested ticker, each including the transaction code (P=purchase, S=sale, A=grant, M=exercise), number of shares, price per share, post-transaction holdings, the filer's name and role (officer/director/10% beneficial owner), the filed date, and a direct URL to the EDGAR source document.

## 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": {
     "properties": {
      "cik": {
       "type": "string",
       "description": "SEC CIK."
      },
      "limit": {
       "type": "number",
       "description": "Max filings, 1-50. Default 10."
      },
      "ticker": {
       "type": "string",
       "description": "US-listed ticker (e.g. 'AAPL'). Either ticker or cik is required."
      },
      "include_derivatives": {
       "type": "boolean",
       "description": "Boolean, default true. Set false to return only non-derivative (common stock) transactions."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ticker": {
       "type": "string"
      },
      "filing_count": {
       "type": "integer"
      },
      "total_transactions": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ticker": "AAPL",
  "filing_count": 5,
  "total_transactions": 12
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-agentutility-ai-db2087bd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agentutility.ai](https://www.zero.xyz/host/x402.agentutility.ai/llms.txt)
