Skip to content
Eden Engine

Recent Insider Stock Trades (by Ticker)

omnial/get-insider-trades

Given a stock ticker, returns recent insider transactions: the transaction date, the insider's name and role (a corporate officer or a member of Congress disclosing under the STOCK Act), whether they bought or sold, the number of shares, the average share price, and the total transaction value.

activeper callv1
Provider
Web & Business Data Network
Category
equities
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": [
    "ticker"
  ],
  "properties": {
    "ticker": {
      "type": "string",
      "description": "Stock ticker symbol (e.g. 'AAPL')."
    },
    "exchange": {
      "type": "string",
      "description": "Stock exchange (e.g. 'NYSE', 'NASDAQ')."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "items": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "shares": {
                "type": "string",
                "description": "Exact share count as a comma-grouped string (e.g. '1,439') for a corporate officer's SEC Form 4 filing, but empty for a congressional STOCK Act disclosure, which discloses only a value range in totalTransaction instead of an exact share count."
              },
              "buySell": {
                "type": "string",
                "description": "'Buy' or 'Sell' on every entry observed."
              },
              "details": {
                "type": "string",
                "description": "Empty string on every entry observed; purpose unconfirmed."
              },
              "insider": {
                "type": "string",
                "description": "The insider's name and role concatenated with no separator by the vendor's own scrape, e.g. 'Executive Officer ASVP' (a corporate officer) or 'Representative AHouse (R-VA)' (a member of Congress disclosing under the STOCK Act) -- example values here are synthetic placeholders (examples/aapl-found.json's own notes), but this field carries the real insider's name on a live call."
              },
              "transactionDate": {
                "type": "string",
                "description": "Usually an M/D/YYYY date. On at least one observed AAPL entry this instead held unrelated vendor promotional text (a newsletter-signup blurb), not a date -- see this field's parent description."
              },
              "totalTransaction": {
                "type": "string",
                "description": "Either an exact dollar amount (e.g. '$456,177.39', corporate officer Form 4 filings) or a wide disclosure range (e.g. '$1,001 - $15,000', congressional STOCK Act disclosures, which only require a value range) -- confirmed both shapes on the real AAPL fixture, do not assume this is always an exact number."
              },
              "averageSharePrice": {
                "type": "string",
                "description": "Dollar-formatted string, e.g. '$317.01'."
              }
            },
            "description": "All fields optional: one real entry in the AAPL fixture carries ONLY transactionDate, holding vendor newsletter-signup marketing text scraped in alongside the real rows, not a date -- a caller should treat an entry with no insider/buySell/totalTransaction as noise, not a transaction.",
            "additionalProperties": false
          },
          "description": "One entry per insider transaction on a real ticker (58 entries observed for AAPL). For an unrecognized ticker, the vendor returns a different, mismatched dataset instead of an error or an empty list (see this tool's verification.notes) -- every entry in that case shapes to `{}` here since none of that dataset's own field names match an insider-trade row, so a caller should treat a long run of all-empty entries as a signal the ticker was not recognized, not as real insider activity."
        }
      },
      "additionalProperties": true
    },
    "status": {
      "type": "string",
      "description": "'success' on both real calls observed."
    }
  },
  "description": "The insider-trades 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