Discover/Insider Trading API
live

Insider Trading APIinsidertrading.org

Access SEC Form 4 insider trading data via 5 endpoints. Filter buy/sell transactions by ticker, insider name, date range, and get top-traded stock rankings.

Endpoint health
verified 4d ago
get_insider_selling
get_insider_trading
get_top_traded_stocks
get_latest_filings
get_insider_buying
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the Insider Trading API?

This API exposes SEC Form 4 insider trading data across 5 endpoints, covering purchase and sale transactions, filing dates, insider names, share counts, and company details sourced from OpenInsider. The get_insider_trading endpoint accepts flexible filters including ticker symbol, insider name, trade type, and a filing date range preset, while get_top_traded_stocks returns insider activity ranked by transaction value for a given time period.

Try it
Page number for pagination.
Max results per page.
Stock ticker symbol or comma-separated list to filter results.
Filter by insider name.
Transaction type filter.
Filing date preset in days (e.g., '730' for last 2 years, '30' for last month, '7' for last week). Omitting returns all dates.
api.parse.bot/scraper/35448f06-f2d3-406e-9570-b9cdb989fc8b/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/35448f06-f2d3-406e-9570-b9cdb989fc8b/get_insider_trading?page=1&count=10&ticker=AAPL&trade_type=all&filing_date=730' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace insidertrading-org-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.openinsider_api import OpenInsider, TradeType, Period

client = OpenInsider()

# Search for recent AAPL insider purchases
for tx in client.transactions.search(ticker="AAPL", trade_type=TradeType.PURCHASE, limit=5):
    print(tx.filing_date, tx.insider_name, tx.trade_type, tx.qty, tx.price, tx.value)

# Get top traded stocks this week
for tx in client.transactions.top_traded(period=Period.WEEK, limit=3):
    print(tx.ticker, tx.company_name, tx.insider_name, tx.value)

# Get latest insider selling activity
for tx in client.transactions.selling(ticker="MSFT", limit=5):
    print(tx.filing_date, tx.ticker, tx.insider_name, tx.price, tx.qty)
All endpoints · 5 totalmissing one? ·

Fetch insider trading transactions with flexible filters. Returns paginated results from the OpenInsider screener sorted by most recent filing date. Supports filtering by ticker, insider name, trade type, and filing date window. Each result includes SEC filing links, trade details, ownership changes, and price performance metrics.

Input
ParamTypeDescription
pageintegerPage number for pagination.
countintegerMax results per page.
tickerstringStock ticker symbol or comma-separated list to filter results.
insiderstringFilter by insider name.
trade_typestringTransaction type filter.
filing_datestringFiling date preset in days (e.g., '730' for last 2 years, '30' for last month, '7' for last week). Omitting returns all dates.
Response
{
  "type": "object",
  "fields": {
    "count": "integer, number of results returned",
    "results": "array of insider trading transaction objects"
  },
  "sample": {
    "data": {
      "count": 1,
      "results": [
        {
          "1d": "",
          "1m": "",
          "1w": "",
          "6m": "",
          "qty": "-50,000",
          "flags": "",
          "owned": "3,755,576",
          "price": "$311.02",
          "title": "Dir",
          "value": "-$15,551,000",
          "ticker": "AAPL",
          "form_url": "http://www.sec.gov/Archives/edgar/data/320193/000114036126023363/xslF345X03/form4.xml",
          "ticker_url": "http://openinsider.com/AAPL",
          "trade_date": "2026-05-27",
          "trade_type": "S - Sale",
          "filing_date": "2026-05-29 18:30:27",
          "insider_url": "http://openinsider.com/insider/Levinson-Arthur-D/1214128",
          "insider_info": "3,755,576 direct shares",
          "insider_name": "Levinson Arthur D",
          "own_change_pct": "-1%"
        }
      ]
    },
    "status": "success"
  }
}

About the Insider Trading API

What the API Returns

Each endpoint returns a count integer and a results array of transaction objects drawn from SEC Form 4 filings indexed on OpenInsider. Transaction objects include filing dates, insider names, company identifiers, ticker symbols, trade type (purchase or sale), share quantities, and transaction values. The get_insider_trading endpoint is the most configurable: it accepts ticker (single symbol or comma-separated list), insider (name string), trade_type (all, purchase, or sale), filing_date (preset in days — 7, 30, 730, etc.), page, and count for pagination.

Focused Endpoints for Common Workflows

get_insider_buying and get_insider_selling are narrowed variants that return only purchase-type or sale-type filings respectively, both accepting an optional ticker filter. get_latest_filings returns the most recently submitted Form 4 filings across all insiders and companies, also filterable by ticker. These three endpoints are useful when you need a quick snapshot without constructing a full filter query.

Top Traded Stocks

get_top_traded_stocks accepts a period parameter (day, week, or month) and returns stocks ranked by aggregate insider transaction value within that window. This endpoint is distinct from the others: instead of individual filing records, it surfaces aggregated ranking data, making it suitable for identifying which companies saw the heaviest insider activity over a rolling time frame.

Reliability & maintenanceVerified

The Insider Trading API is a managed, monitored endpoint for insidertrading.org — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when insidertrading.org changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official insidertrading.org API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
5/5 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Alert system that notifies when a tracked ticker appears in new Form 4 filings via get_latest_filings.
  • Screen for recent insider purchases on a watchlist using get_insider_buying filtered by ticker.
  • Rank companies by insider conviction by querying get_top_traded_stocks with the week or month period.
  • Backtest insider trading signals by pulling historical transactions via get_insider_trading with a filing_date preset of 730 days.
  • Monitor a specific corporate insider's activity across all their transactions using the insider name filter on get_insider_trading.
  • Build a dashboard comparing insider buy vs. sell volume for a given ticker using get_insider_buying and get_insider_selling in parallel.
  • Feed insider transaction data into a quantitative model by paginating through results with the page and count parameters.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does OpenInsider have an official developer API?+
OpenInsider (insidertrading.org) does not publish an official developer API or documented public endpoints for programmatic access.
What does the `filing_date` parameter in `get_insider_trading` actually control?+
It filters results to filings submitted within a trailing window expressed in days. For example, passing 30 returns filings from the last 30 days, 730 covers roughly the last two years. Omitting the parameter returns results without a date cutoff. This is a preset value, not a specific calendar date, so arbitrary date ranges (e.g., a custom start and end date) are not directly supported.
Can I retrieve historical transaction data going back further than two years?+
The filing_date parameter on get_insider_trading supports presets up to 730 days (approximately two years). Filings older than that window are not exposed through the current endpoints. You can fork this API on Parse and revise it to add an endpoint that targets a longer historical range if your use case requires deeper history.
Does the API return SEC Form 4 footnotes or amendment data (Form 4/A)?+
The current response fields cover transaction-level data such as insider name, ticker, trade type, share count, filing date, and transaction value. Footnote text and amendment indicators from Form 4/A filings are not included in the response objects. You can fork this API on Parse and revise it to add an endpoint that surfaces amendment or footnote detail.
Is insider data available for non-US companies or OTC-traded securities?+
The data is sourced from OpenInsider, which indexes SEC Form 4 filings — a US regulatory requirement. Coverage is limited to companies that file with the SEC, which includes US-listed and SEC-reporting foreign private issuers, but not companies that file only with foreign regulators. OTC and pink-sheet coverage depends on whether those companies submit Form 4s to the SEC.
Page content last updated . Spec covers 5 endpoints from insidertrading.org.
Related APIs in FinanceSee all →
openinsider.com API
Track insider trading activity by accessing the latest SEC filings, identifying cluster buys, and discovering top insider purchases with advanced filtering capabilities. Screen stocks based on insider behavior patterns and visualize buy/sell trends to inform your investment decisions.
secform4.com API
Track insider buying and selling activity, monitor institutional holdings, and analyze SEC filings to identify significant trades and market sentiment. Search company insider transactions, review 13D/13G filings, and access hedge fund portfolios to inform your investment decisions.
finviz.com API
Monitor insider trading activity, screen stocks based on custom criteria, and analyze market sentiment from financial news to make informed investment decisions. Access real-time data on market movers, tabular financial information, and comprehensive market intelligence all in one place.
sec.gov API
Search for publicly traded companies and instantly access their SEC filings with details like filing type, date, description, and accession numbers. Find the regulatory documents you need to research company financial information and compliance records.
tipranks.com API
Discover top-performing stocks and access detailed analyst ratings and earnings forecasts to make informed investment decisions. Get real-time stock information including performance metrics and expert analyst opinions all in one place.
screener.in API
Search and analyze Indian stocks with real-time financial data, company details, IPO information, price history, and peer comparisons. Get instant access to stock screening results, market listings, and company announcements to make informed investment decisions.
disclosures-clerk.house.gov API
Access and analyze financial transactions reported by members of Congress through their periodic disclosure filings, including detailed transaction records and aggregated spending breakdowns by category. Track congressional financial activity, identify investment patterns, and view comprehensive summaries of reported trades and holdings.
quiverquant.com API
Access data from quiverquant.com.