Insider Trading (SEC)

Who's buying or selling their own stock — recent insider trades from official SEC filings.

GET/api/v1/insider-trades/{ticker}
Insider InfoIncluded in every plan · one key.

Overview

Recent insider transactions from official SEC Forms 3, 4 and 5 for any covered US equity — who bought (code P) or sold (code S), their role, shares, price and dollar value, 10b5-1 status, footnotes and direct links to each filing. Administrative codes A/M/F/G and sales whose linked SEC footnotes identify tax withholding are retained only when requested and never treated as voluntary market trades. Source: SEC EDGAR (no X/Twitter).

Use it toSee what a company's own executives and directors are doing with their shares.

Coverage

Universe
All US SEC filers
History
Recent Form 4 filings
Updates
As filed
Source
SEC EDGAR (official)

Call it

Send your ra_live_… key in the x-api-key header. Pick your language:

curl "https://raspberrytrades.com/api/v1/insider-trades/AAPL" \
  -H "x-api-key: ra_live_your_key_here"

Parameters

ParameterTypeDescription
tickerpathCovered US equity symbol, e.g. AAPL (required)
include_noise0 | 11 = also return administrative A/M/F/G and tax-withholding transactions (optional)
limitnumberMaximum transactions to return (optional, max 500)
x-api-keyheaderYour API key (required)
Example response
200 OK · application/json
{
  "requestedTicker": "AAPL",
  "mappingStatus": "exact",
  "issuer": { "cik": "0000320193", "name": "Apple Inc.", "ticker": "AAPL" },
  "query": { "includeNoise": false, "limit": 100 },
  "count": 31,
  "transactions": [
    {
      "transactionDate": "2026-05-27",
      "code": "S",
      "shares": 50000,
      "pricePerShare": 311.02,
      "grossValue": 15551000,
      "signal": "sell",
      "is10b5One": false,
      "isTaxWithholding": false,
      "alertEligible": true,
      "reportingOwners": [
        { "name": "EXAMPLE DIRECTOR", "roles": ["Director"] }
      ],
      "source": {
        "source": "sec_ownership_xml",
        "filingDetailUrl": "https://www.sec.gov/Archives/edgar/data/..."
      }
    }
  ],
  "summary": {
    "threeMonths": { "netValue": -15551000, "distinctBuyers": 0 },
    "twelveMonths": { "netValue": -15551000, "distinctBuyers": 0 },
    "clusterBuy": { "active": false }
  }
}
Insider Info — related datasets
Get your API key

Create a free account, copy your ra_live_… key and make your first call to https://raspberrytrades.com/api/v1/insider-trades/{ticker}.

Keep your key on your server — never ship it in front-end code.