Skip to content
Eden Engine

Company Insider Trading History (by SEC CIK)

omnial/get-company-insider-trading

Given a company's SEC CIK number, returns its history of Form 4 insider trading transactions -- transaction date, the insider's name and title, shares traded, average price, total dollar amount, and resulting shares owned -- as publicly filed with the SEC. Returns an empty list for a CIK with no filings on record.

activeper callv1
Provider
Web & Business Data Network
Category
insider-trading
Provider price
$0.01365 per call
Latency p50 / p95
— / —
Success rate
Verified

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "cik"
  ],
  "properties": {
    "cik": {
      "type": "string",
      "description": "SEC CIK number of the company (e.g. '320193' for Apple Inc, '789019' for Microsoft)"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "items": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "filing": {
                "type": "string",
                "description": "Observed as the literal string 'View' on every real call -- a link label from the source filing index, not descriptive data."
              },
              "symbol": {
                "type": "string",
                "description": "Ticker symbol, e.g. 'AAPL', 'MSFT'."
              },
              "company": {
                "type": "string",
                "description": "e.g. 'Apple Inc.', 'MICROSOFT CORP'."
              },
              "shares_owned": {
                "type": "string",
                "description": "Comma-formatted share count plus an ownership-type annotation in parentheses, e.g. '35,790 (Direct)' or '3,755,576 (Indirect Direct)'."
              },
              "total_amount": {
                "type": "string",
                "description": "Dollar-formatted total as a string, e.g. '$456,177'."
              },
              "average_price": {
                "type": "string",
                "description": "Dollar-formatted price as a string, e.g. '$317.01'."
              },
              "shares_traded": {
                "type": "string",
                "description": "Comma-formatted share count as a string, not a number, e.g. '1,439'."
              },
              "transaction_date": {
                "type": "string",
                "description": "Date plus a transaction-type word, e.g. '2026-09-01 Sale' -- not a plain ISO date."
              },
              "reported_datetime": {
                "type": "string",
                "description": "When the filing was reported, e.g. '2026-09-03 6:30 pm' -- local time, no timezone given."
              },
              "insider_relationship": {
                "type": "string",
                "description": "The insider's name and title/relationship to the company, e.g. 'COOK TIMOTHY D Chief Executive Officer'. Public SEC disclosure data -- see verification.notes."
              }
            },
            "additionalProperties": true
          },
          "description": "One entry per Form 4 insider transaction on record for the company, most recent first on every real call observed. Empty array when the CIK has no filings on record (observed for CIK '1')."
        }
      },
      "additionalProperties": true
    },
    "status": {
      "type": "string",
      "description": "'success' on all three real calls observed."
    }
  },
  "description": "The insider trading record, as returned at routing.responseResultPath ($.output).",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.01365
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 8, 2026