Insider Trading (SEC)
Who's buying or selling their own stock — recent insider trades from official SEC filings.
/api/v1/insider-trades/{ticker}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
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
| Parameter | Type | Description |
|---|---|---|
ticker | path | Covered US equity symbol, e.g. AAPL (required) |
include_noise | 0 | 1 | 1 = also return administrative A/M/F/G and tax-withholding transactions (optional) |
limit | number | Maximum transactions to return (optional, max 500) |
x-api-key | header | Your API key (required) |
{
"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 }
}
}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.