# SEC Form 4 Insider Trading Feed

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

Returns recent SEC Form 4 insider transactions (buys, sells, grants, exercises) for any US-listed ticker, including officer/director/10% owner activity with share counts, prices, and EDGAR document links.

## Facts

- Endpoint: POST https://x402-deployer.x402-deployer.workers.dev/insider-trading
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-deployer-x402-deployer-workers-dev-93cabc09
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nWR5-w5V_a82kl2bhhfQi

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-deployer-x402-deployer-workers-dev-93cabc09 -d '<json body>'
```

Example prompt: Pull the most recent SEC Form 4 insider transactions for NVDA — I want to see who's been buying or selling, how many shares, at what price, and links to the actual EDGAR filings.

## When to prefer this

Choose this endpoint when you need structured, field-parsed SEC Form 4 insider transaction data for a specific US-listed ticker without scraping EDGAR directly. It is ideal for equity research agents, investment screening workflows, or compliance checks that need quick programmatic access to insider buy/sell activity including transaction codes, share counts, prices, and direct document links. Prefer this over generic web search when you need clean, structured data rather than news articles about insider trading.

## Known failure modes

- Ticker not found or not a US-listed security — returns empty results or error
- EDGAR data lag — very recent filings may not yet be indexed
- Ambiguous ticker (e.g. same symbol on multiple exchanges) may return mixed results
- Network or upstream EDGAR API timeout
- Invalid or malformed ticker input returns error

## 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 with: transaction code (P=purchase, S=sale, A=grant, M=exercise), number of shares, price per share, post-transaction holdings, the insider's name and role, the date filed, and a direct URL to the EDGAR 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"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-deployer-x402-deployer-workers-dev-93cabc09/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-deployer.x402-deployer.workers.dev](https://www.zero.xyz/host/x402-deployer.x402-deployer.workers.dev/llms.txt)
