latestOpenAPI 3.0.02026-08-2010141507.9 KB

3d5897270d8a

Insider Transactions

Insider transactions

Stock Pro

Returns insider transactions (Form 4/Form 5) for officers and directors. Transactions are deduplicated across co-owners and filings — each physical trade appears once, prioritizing the most senior filer (officer > director > 10% owner).

Excludes trades with price >= $100,000 (SEC data entry errors). Form 5/5A amendments are excluded when a corresponding Form 4/4A exists for the same trade.

get/api/insider-transactions

Query parameters

symbolstring

Stock ticker symbol. Identify the entity by exactly one of: symbol, cik, cusip, composite_figi, or share_class_figi. At least one is required.

cikinteger

SEC Central Index Key (CIK).

cusipstring

CUSIP identifier (9 characters).

composite_figistring

Composite OpenFIGI identifier.

share_class_figistring

Share-class OpenFIGI identifier.

filterstring

Transaction filter:

  • all — All transactions by officers or directors
  • buys — Acquisitions by officers or directors
  • sells — Dispositions by officers or directors
  • significant — Open-market purchases (P) and sales (S) only
  • executives — Officers only (excludes non-officer directors)
  • voluntary-sells — Sales not paired with an option exercise in the same filing
pageinteger

Page number (1-indexed)

pageSizeinteger

Number of results per page

startDatestring date

Filter transactions on or after this date (YYYY-MM-DD)

endDatestring date

Filter transactions on or before this date (YYYY-MM-DD)

Response

Paginated insider transactions

pageinteger

Current page number (1-indexed)

pageSizeinteger

Number of results per page

totalPagesinteger

Total number of pages

totalResultsinteger

Total matching records

Example response

{
  "page": 1,
  "pageSize": 50,
  "totalPages": 4,
  "totalResults": 167,
  "data": [
    {
      "ownerName": "LEVINSON ARTHUR D",
      "ownerCik": 1214128,
      "isDirector": true,
      "documentType": "4",
      "securityTitle": "Common Stock",
      "transactionDate": "2026-02-26",
      "transactionCode": "G",
      "shares": 1113,
      "acquiredDisposed": "D",
      "sharesAfter": 4069576,
      "directIndirect": "D",
      "accessionNumber": "0001214128-26-000004",
      "transactionValue": 245678,
      "filingDate": "2026-02-28"
    }
  ]
}