# GovParse SEC Form 4 Insider Transactions Search

> GovParse SEC Form 4 Insider Transactions Search is a paid API for AI agents from api.govparse.io, paid per call via x402, $1.25/call, status unknown (last checked 2026-09-14).

Search individual SEC Form 4 transaction lines by ticker, insider, role, direction, transaction code, security type, and date to retrieve raw insider trading activity as filed.

## Facts

- Endpoint: GET https://api.govparse.io/v1/insiders/transactions
- Price: $1.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/govparse-sec-form-4-insider-transactions-search-3e31067b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XpXn7fZjcwlICh037FxqU

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 govparse-sec-form-4-insider-transactions-search-3e31067b
```

Example prompt: Pull the 25 most recent insider buy transactions for DELL from SEC Form 4 filings, filtering for director or officer roles on non-derivative shares worth at least $100,000, sorted by transaction date descending.

## When to prefer this

Choose this endpoint when you need granular, individual Form 4 transaction-level data filterable by direction, transaction code, role, and dollar value — especially for building insider trading signals, monitoring specific insiders, or auditing filing activity. Prefer this over aggregated insider cluster signals when you need the raw per-transaction detail as filed with the SEC.

## Known failure modes

- Invalid ticker symbol returns empty result set rather than an error
- Unrecognized transaction code or role enum value may return 400 bad request
- Date format not matching YYYY-MM-DD returns a validation error
- Limit exceeding 100 is capped or rejected
- Offset beyond available records returns empty array
- Issuer CIK not matching any filings returns empty results
- min_value as non-numeric string may cause parsing error

## How this service works

What did a company's insiders actually file? Search individual SEC Form 4 transaction lines by ticker, issuer CIK, insider name, direction (buy/sell/other), transaction code (P/S/A/M/F/G), role (officer/director/ten_percent), state, security type, minimum value, or date. Returns the insider, role, security, code, shares, price, and value per filing — the raw feed behind the cluster signal. Public SEC filings as filed — observational, not advice.

## Output

Returns an array of individual Form 4 transaction line items, each containing the insider's name, role (officer/director/ten_percent), security type (nonderiv/deriv), SEC transaction code (P/S/A/M/F/G), number of shares, price per share, total transaction value, transaction date, and filing date — representing raw SEC-as-filed data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [],
   "properties": {
    "role": {
     "type": "string",
     "examples": [
      "director"
     ],
     "description": "Insider role: officer | director | ten_percent."
    },
    "sort": {
     "type": "string",
     "examples": [
      "txn_date:desc"
     ],
     "description": "txn_date | txn_value | shares | filing_date :asc|:desc. Default txn_date:desc."
    },
    "limit": {
     "type": "integer",
     "examples": [
      25
     ],
     "description": "Max rows (default 25, cap 100)."
    },
    "owner": {
     "type": "string",
     "examples": [
      "Dell"
     ],
     "description": "Reporting-insider name fragment."
    },
    "since": {
     "type": "string",
     "examples": [
      "2026-05-01"
     ],
     "description": "Transaction on/after this date (YYYY-MM-DD)."
    },
    "state": {
     "type": "string",
     "examples": [
      "TX"
     ],
     "description": "Insider state code(s), CSV."
    },
    "offset": {
     "type": "integer",
     "examples": [
      0
     ],
     "description": "Rows to skip, for paging."
    },
    "ticker": {
     "type": "string",
     "examples": [
      "DELL"
     ],
     "description": "Issuer ticker(s), CSV (as filed on the Form 4)."
    },
    "txn_code": {
     "type": "string",
     "examples": [
      "P"
     ],
     "description": "SEC transaction code(s), CSV: P (buy), S (sell), A (grant), M, F, G..."
    },
    "direction": {
     "type": "string",
     "examples": [
      "sell"
     ],
     "description": "buy | sell | other (grants, option exercises, tax withholding...)."
    },
    "min_value": {
     "type": "string",
     "examples": [
      "100000"
     ],
     "description": "Minimum transaction value in $ (shares × price)."
    },
    "issuer_cik": {
     "type": "string",
     "examples": [
      "1571996"
     ],
     "description": "SEC issuer CIK."
    },
    "security_type": {
     "type": "string",
     "examples": [
      "nonderiv"
     ],
     "description": "nonderiv (common shares) | deriv (options/warrants)."
    }
   }
  }
 }
}
```

## More

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