# x402-factory SEC Form 4 Insider Transactions

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

Returns parsed SEC Form 4 insider transactions for a ticker with buy/sell/award classification, 10b5-1 plan flags, per-filer roles, and aggregate net insider flow over a configurable lookback window.

## Facts

- Endpoint: GET https://x402-factory.com/v1/edgar/insider/:ticker
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-factory-sec-form-4-insider-transactions-3e0dbcd4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__dbFhOzp5yAd5eMeae6Yt

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-factory-sec-form-4-insider-transactions-3e0dbcd4
```

Example prompt: Pull insider transaction data for NVDA from SEC Form 4 filings over the last 60 days — I want to see who's buying or selling, whether any trades are on 10b5-1 plans, and what the net insider flow looks like.

## When to prefer this

Use this endpoint when you need clean, pre-parsed insider transaction data from SEC Form 4 filings without building your own EDGAR parser — especially useful for investment research, pre-earnings conviction checks, or detecting unusual cluster buying/selling. Prefer this over raw EDGAR access when you need buy/sell/award classification, 10b5-1 flags, and aggregate net flow already computed. Good complement to fundamental and price data before major events.

## Known failure modes

- Invalid ticker format returns a 4xx error
- Ticker not found in EDGAR returns empty transaction list or 404
- days parameter out of range (>90 or <1) returns validation error
- min_value_usd set too high filters out all transactions leaving empty results
- SEC EDGAR upstream unavailability causes 5xx errors
- Payment not received or insufficient USDC balance blocks the request

## How this service works

Normalized insider transactions (Form 4) with flow aggregates for a ticker — SEC Form 4 filings parsed into clean insider transactions: buy/sell/award classification, 10b5-1 plan flags, per-filer roles, and aggregate net flow with notable-pattern flags. Use it to gauge insider conviction before events.

## Output

Returns a structured object containing the ticker and company name, a list of individual insider transactions (each with filer name, role, transaction type buy/sell/award/other, 10b5-1 flag, shares, price, USD value, transaction date, filing date, and accession number), plus aggregate stats including net insider flow in USD, buy count, sell count, and notable pattern flags for the requested window.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "pattern": "^[A-Za-z][A-Za-z.-]*$",
       "maxLength": 6,
       "minLength": 1
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "days": {
       "type": "integer",
       "default": 30,
       "maximum": 90,
       "minimum": 1,
       "description": "Lookback window in days"
      },
      "min_value_usd": {
       "type": "number",
       "minimum": 0,
       "description": "Drop transactions below this absolute USD value"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "type": "object",
       "required": [
        "ticker",
        "company",
        "window_days",
        "transactions",
        "aggregates"
       ],
       "properties": {
        "ticker": {
         "type": "string"
        },
        "company": {
         "type": "string"
        },
        "aggregates": {
         "type": "object",
         "required": [
          "net_insider_flow_30d_usd",
          "buy_count",
          "sell_count",
          "notable_flags"
         ],
         "properties": {
          "buy_count": {
           "type": "integer",
           "maximum": 9007199254740991,
           "minimum": -9007199254740991
          },
          "sell_count": {
           "type": "integer",
           "maximum": 9007199254740991,
           "minimum": -9007199254740991
          },
          "notable_flags": {
           "type": "array",
           "items": {
            "type": "string"
           }
          },
          "net_insider_flow_30d_usd": {
           "type": "number"
          }
         },
         "additionalProperties": false
        },
        "window_days": {
         "type": "integer",
 
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-sec-form-4-insider-transactions-3e0dbcd4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-factory.com](https://www.zero.xyz/host/x402-factory.com/llms.txt)
