# SEC Insider Transactions Lookup

> SEC Insider Transactions Lookup is a paid API for AI agents from apiacre.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Retrieve recent SEC Form 4 insider trades (purchases, sales, awards, exercises) for a given ticker or CIK, including prices, holdings, derivatives, 10b5-1 context, and filing footnotes.

## Facts

- Endpoint: POST https://apiacre.com/v1/research/sec-insider-transactions
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-insider-transactions-lookup-4ee8a5ba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Wa5duli6hjC48n7MBvIuL

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 sec-insider-transactions-lookup-4ee8a5ba -d '<json body>'
```

Example prompt: Pull the most recent SEC Form 4 insider trades for NVDA — I want to see purchases, sales, awards, and any 10b5-1 plan activity, along with prices and footnotes.

## When to prefer this

Use this endpoint when you need structured, parsed SEC Form 4 insider transaction data including 10b5-1 context, derivatives, awards, and footnotes — particularly when you want machine-readable output rather than raw HTML from EDGAR. Prefer this over scraping SEC EDGAR directly when you need fast, clean JSON output with pricing and holding details already extracted.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty result
- CIK not found in SEC EDGAR returns no data
- Rate limiting or quota exceeded returns a payment/throttle error
- Very recent filings may not yet be indexed
- Company with no Form 4 filings returns empty transactions array

## How this service works

Retrieve recent SEC Form 4 officer, director, and 10% beneficial-owner trades for a ticker or CIK, including purchases, sales, awards, exercises, tax withholding, prices, holdings, 10b5-1 context, derivatives, and filing footnotes.

## Output

Returns a structured list of recent SEC Form 4 transactions for the queried ticker or CIK, including: insider name and role (officer, director, 10% owner), transaction type (purchase, sale, award, exercise, tax withholding), date, price per share, number of shares, post-transaction holdings, whether a 10b5-1 plan applies, derivative transaction details, and any filing footnotes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "identifier": {
   "type": "string"
  },
  "max_filings": {
   "type": "integer"
  },
  "lookback_days": {
   "type": "integer"
  },
  "include_derivatives": {
   "type": "boolean"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "cik": "0000320193",
   "name": "Apple Inc.",
   "source": "https://data.sec.gov/submissions/CIK0000320193.json",
   "filings": [
    {
     "form": "4",
     "filingDate": "2026-06-17",
     "reportDate": "2026-06-15",
     "periodOfReport": "2026-06-15",
     "accessionNumber": "0001140361-26-025622"
    }
   ],
   "summary": {
    "codeCounts": {
     "F": 1,
     "M": 2
    },
    "filingCount": 1,
    "transactionCount": 3,
    "openMarketPurchaseShares": 0,
    "openMarketPurchaseReportedValue": 0
   },
   "tickers": [
    "AAPL"
   ],
   "warnings": [],
   "exchanges": [
    "Nasdaq"
   ],
   "disclaimer": "Issuer-reported Section 16 ownership data only. Transaction codes and sales d...",
   "retrievedAt": "2026-08-09T00:00:00Z",
   "lookbackDays": 90,
   "includeDerivatives": true
  },
  "meta": {
   "cached": false,
   "sources": [],
   "warnings": [],
   "duration_ms": 42,
   "next_actions": []
  },
  "service": "research.sec-insider-transactions",
  "version": "1",
  "request_id": "018f1f54-7f38-7ba2-8dc3-5f90272d9f1a"
 }
}
```

## More

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