# SEC Form 4 Insider Transactions Normalizer

> SEC Form 4 Insider Transactions Normalizer 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-15).

Fetches and normalizes recent SEC Form 4 insider trading records (officer/director/10%+ shareholder transactions) for any US stock ticker into structured per-transaction data.

## Facts

- Endpoint: POST https://x402-deployer.x402-deployer.workers.dev/insider-form-4
- 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-deployer-x402-deployer-workers-dev-31fb03f6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_o4zYgCfJgS5RcL-UfIHWw

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-31fb03f6 -d '<json body>'
```

Example prompt: Pull the latest SEC Form 4 insider transactions for NVDA — I want to see who bought or sold, how many shares, at what price, and their role at the company.

## When to prefer this

Use this endpoint when you need structured, normalized insider transaction data from SEC Form 4 filings for any US-listed public company. Ideal for equity research workflows, building insider sentiment signals, or alerting on unusual insider buying/selling activity. Prefer this over scraping SEC EDGAR directly since it handles parsing and normalization automatically.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Ticker has no recent Form 4 filings (e.g. private company or no recent activity)
- SEC EDGAR temporarily unavailable causing fetch failure
- Request missing required ticker parameter returns validation error
- Payment not completed results in 402 response

## How this service works

SEC Form 4 (insider transactions) normalizer. Recent officer/director/10%+ trades for any US ticker. Per-transaction shape: who, when, code (purchase/sale/grant/exercise/etc), shares, price, post-tx holdings, role. 100% public-domain SEC EDGAR data.

## Output

Returns a list of recent insider transactions for the requested ticker, each containing: insider name, role (e.g. CEO, Director, 10% owner), transaction date, transaction code (purchase, sale, grant, exercise, etc.), number of shares, price per share, and post-transaction holdings. Data sourced directly from SEC EDGAR public filings.

## 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 (zero-padded or numeric, e.g. '0000320193'). Use when ticker is ambiguous or unavailable."
      },
      "limit": {
       "type": "number",
       "description": "Max Form 4 filings to return. 1-50. Default 10."
      },
      "ticker": {
       "type": "string",
       "description": "US-listed ticker (e.g. 'AAPL', 'TSLA'). Either ticker or cik is required."
      },
      "include_derivatives": {
       "type": "boolean",
       "description": "If true, includes derivative-security transactions (options, RSUs, performance shares). Default true."
      }
     }
    },
    "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": {
      "cik": {
       "type": "string"
      },
      "ticker": {
       "type": "string"
      },
      "company_name": {
       "type": "string"
      },
      "filing_count": {
       "type": "integer"
      },
      "form_4_filings": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "form": {
          "type": "string"
         },
         "filed_date": {
          "type": "string"
         },
         "transactions": {
          "type": "array"
         },
         "reporting_owner": {
          "type": "object",
          "properties": {
           "name": {
            "type": "string"
           },
           "roles": {
            "type": "array",
            "items": {
             "type": "string"
            }
           }
          }
         },
         "accession_number": {
          "type": "string"
         },
         "period_of_report": {
          "type": "string"
         },
         "primary_document_url": {
          "type": "string"
         }
        }
       }
      },

… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-deployer-x402-deployer-workers-dev-31fb03f6/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)
