# SEC EDGAR Insider Trading Data (Form 4 Filings)

> SEC EDGAR Insider Trading Data (Form 4 Filings) is a paid API for AI agents from edgar-x402.vercel.app, paid per call via x402, $0.003/call, status down (last checked 2026-09-15).

Returns recent insider trading transactions (Form 4 filings) by executives, directors, and major shareholders for a given public company over the last 90 days.

## Facts

- Endpoint: GET https://edgar-x402.vercel.app/edgar/insider
- Price: $0.003/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/edgar-x402-vercel-app-b21f8cc5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mkjjIOr6E_C9Z_KNYV20e

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 edgar-x402-vercel-app-b21f8cc5
```

Example prompt: Pull the last 15 insider trades for Tesla (TSLA) from SEC EDGAR Form 4 filings — I want to see what executives and directors have been buying or selling.

## When to prefer this

Use this endpoint when you need recent insider trading activity (last 90 days) for a specific public company, including executive, director, and major shareholder transactions reported via SEC Form 4. Prefer this over general EDGAR search when you specifically need Form 4 transaction data rather than financial statements or company profiles.

## Known failure modes

- Invalid or unknown ticker symbol returns no results or an error
- CIK number not found in EDGAR returns empty results
- Limit parameter too high may slow response or return partial data
- Company with no Form 4 filings in last 90 days returns empty transactions array
- Network or upstream EDGAR API outage returns 5xx error

## How this service works

SEC EDGAR insider trading data (Form 4 filings). Returns recent transactions by executives, directors, and major shareholders for any public company. Last 90 days.

## Output

Returns a list of recent insider transactions for the specified company, including details from Form 4 filings such as transaction type, shares traded, and filer role, along with the total number of Form 4 filings found in the last 90 days.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": "15",
   "ticker": "MSFT"
  }
 }
}
```

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "limit": {
       "type": "string",
       "description": "Number of transactions to return (default 15)"
      },
      "ticker": {
       "type": "string",
       "description": "Stock ticker or CIK number"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ticker": {
       "type": "string"
      },
      "transactions": {
       "type": "array"
      },
      "total_form4_filings": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## More

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