# EDGAR Insider Trades by Ticker

> EDGAR Insider Trades by Ticker is a paid API for AI agents from agent402.tools, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Fetches recent Form 4 insider transactions (officer, director, or 10% holder trades) for a US public company from SEC EDGAR

## Facts

- Endpoint: GET https://agent402.tools/api/edgar-insider-trades
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/edgar-insider-trades-by-ticker-fa8f81ac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xGMP17wOh0s5eiC6ko8dB

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-insider-trades-by-ticker-fa8f81ac
```

Example prompt: Can you pull the most recent insider trades for NVDA from the last 30 days — I want to see what officers and directors have been buying or selling?

## When to prefer this

Use this endpoint when you need a single-call solution to retrieve Form 4 insider trading activity for a specific US public company by ticker or CIK; it handles the non-trivial EDGAR lookup (Form 4 is indexed under the insider's CIK, not the company's) so you don't need to chain multiple EDGAR calls yourself

## Known failure modes

- Invalid or unknown ticker returns empty results or error
- CIK not found for given ticker if ticker-to-CIK resolution fails
- days parameter out of 1-365 range returns validation error
- limit parameter out of 1-100 range returns validation error
- No Form 4 filings found within the lookback window returns empty array
- EDGAR API downtime causes upstream fetch failure

## How this service works

Recent Form 4 insider transactions filed against a company (officer, director, or 10% holder trades). Backed by EDGAR's full-text search (efts.sec.gov) filtered by subject-company CIK - Form 4 is owned by each insider's CIK, not the company's, so this is the only single-call path. ?ticker=AAPL&days=30

## Output

A list of Form 4 filings for the specified company, each containing insider identity, role, transaction date, shares traded, price, and transaction type (buy/sell), sourced directly from SEC EDGAR full-text search

## 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",
     "properties": {
      "cik": {
       "type": "string",
       "description": "SEC CIK of the subject company (alternative to ticker)"
      },
      "days": {
       "type": "number",
       "description": "Lookback window in days, 1-365 (default 30)"
      },
      "limit": {
       "type": "number",
       "description": "Max filings to return, 1-100 (default 25)"
      },
      "ticker": {
       "type": "string",
       "description": "US stock ticker (alternative to cik)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "cik",
      "name",
      "windowDays",
      "total",
      "returned",
      "trades"
     ],
     "properties": {
      "cik": {
       "type": "string"
      },
      "name": {
       "type": "string"
      },
      "total": {
       "type": "integer"
      },
      "trades": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "returned": {
       "type": "integer"
      },
      "windowDays": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cik": "0000320193",
  "name": "Apple Inc.",
  "total": 8,
  "trades": [
   {
    "cik": "0001214128",
    "url": "https://www.sec.gov/Archives/edgar/data/1214128/000112760225009999/xslF345X05/wf-form4.xml",
    "form": "4",
    "filedDate": "2025-11-04",
    "displayNames": [
     "COOK TIMOTHY D (CIK 0001214128)"
    ],
    "accessionNumber": "0001127602-25-009999",
    "primaryDocument": "xslF345X05/wf-form4.xml"
   }
  ],
  "returned": 8,
  "windowDays": 30
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/edgar-insider-trades-by-ticker-fa8f81ac/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
