Catalog/finance-insider-summary

Finance

Insider buying/selling summary API

Rolls recent SEC Form-4 filings up into NET open-market buying vs selling, for the company and per insider (only code-P buys and code-S sells count toward sentiment; grants/exercises excluded). Answers 'are insiders net buyers or sellers', 'insider sentiment for TSLA', 'who's been buying their own stock'.

Price$0.01per request
MethodPOST
Route/v1/finance/insider-summary
StatusLive
MIME typeapplication/json
Rate limit30/minute
Cache3600s public
financeinsiderform-4sentimentbuyingsellingsecaggregate
API URLhttps://x402.hexl.dev/v1/finance/insider-summary
Integration docs
Example request
{
  "ticker": "AAPL",
  "filings": 12
}
Example response
{
  "ticker": "AAPL",
  "company": "Apple Inc.",
  "filingsAnalyzed": 12,
  "openMarketBuys": 0,
  "openMarketSells": 4,
  "boughtShares": 0,
  "soldShares": 250000,
  "netShares": -250000,
  "sentiment": "net selling",
  "byInsider": [
    {
      "name": "COOK TIMOTHY D",
      "title": "CEO",
      "boughtShares": 0,
      "soldShares": 100000,
      "netShares": -100000
    }
  ]
}
Input schema
{
  "type": "object",
  "required": [
    "ticker"
  ],
  "properties": {
    "ticker": {
      "type": "string",
      "examples": [
        "AAPL"
      ]
    },
    "filings": {
      "type": "number",
      "default": 12
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}