Catalog/finance-insider

Finance

SEC Form-4 insider transactions (parsed) API

Recent insider transactions for a public company — we fetch the SEC Form-4 filings and PARSE the ownership XML into clean transactions: who (director/officer + title), buy or sell, shares, price per share, and shares held afterward. The XML parsing + SEC orchestration is the hard-to-DIY value listing filings alone doesn't give. Answers 'insider buying at TSLA', 'did executives sell this stock', 'Form 4 transactions for AAPL', 'who is buying their own shares'.

Price$0.01per request
MethodPOST
Route/v1/finance/insider
StatusLive
MIME typeapplication/json
Rate limit30/minute
Cache3600s public
financeinsiderform-4secedgarstockexecutivestradingownership
API URLhttps://x402.hexl.dev/v1/finance/insider
Integration docs
Example request
{
  "ticker": "AAPL",
  "limit": 1
}
Example response
{
  "ticker": "AAPL",
  "cik": "0000320193",
  "company": "Apple Inc.",
  "formType": "4",
  "filingCount": 1,
  "filings": [
    {
      "filer": "COOK TIMOTHY D",
      "isDirector": false,
      "isOfficer": true,
      "officerTitle": "Chief Executive Officer",
      "filedDate": "2026-04-02",
      "transactions": [
        {
          "security": "Common Stock",
          "date": "2026-04-01",
          "code": "S",
          "action": "open-market sale",
          "acquiredDisposed": "D",
          "shares": 100000,
          "pricePerShare": 220.5,
          "sharesOwnedAfter": 3200000
        }
      ]
    }
  ]
}
Input schema
{
  "type": "object",
  "required": [
    "ticker"
  ],
  "properties": {
    "ticker": {
      "type": "string",
      "examples": [
        "AAPL"
      ]
    },
    "limit": {
      "type": "number",
      "default": 5
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}