Discover/Finviz API
live

Finviz APIfinviz.com

Access Finviz stock screener results, insider trading transactions, market movers, and news sentiment via 5 structured API endpoints.

Endpoint health
verified 9h ago
get_insider_trading
get_screener_results
get_market_movers
get_stock_news_sentiment
4/4 passing latest checkself-healing
Endpoints
5
Updated
22d ago

What is the Finviz API?

The Finviz API exposes 5 endpoints covering insider trading activity, stock screener results, market movers, news sentiment, and raw tabular data from Finviz pages. The get_insider_trading endpoint returns transaction-level records including owner name, relationship to the company, transaction type, cost per share, number of shares, and total dollar value — filterable by a minimum transaction size to surface only material activity.

Try it
Minimum transaction value in USD. Transactions with Value ($) below this threshold are excluded from results.
api.parse.bot/scraper/680946c1-3c1f-4cd9-948d-2822f535b6a1/<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/680946c1-3c1f-4cd9-948d-2822f535b6a1/get_insider_trading?min_value=1000000' \
  -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 finviz-com-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.

"""Walkthrough: Finviz SDK — screen stocks, check movers, read news sentiment, inspect insider trades."""
from parse_apis.finviz_market_data import Finviz, MoverType, TickerNotFound

finviz = Finviz()

# Screen for undervalued stocks using Finviz filter codes
for stock in finviz.stocks.screen(filters="fa_peg_u1", limit=5):
    print(stock.ticker, stock.company, stock.price, stock.change)

# Get today's top market gainers
for gainer in finviz.stocks.movers(mover_type=MoverType.TOP_GAINERS, limit=3):
    print(gainer.ticker, gainer.company, gainer.change, gainer.volume)

# Drill into a specific stock's news sentiment
aapl = finviz.stock("AAPL")
for article in aapl.news.list(limit=5):
    print(article.headline, article.sentiment, article.source)

# List significant insider transactions
try:
    for txn in finviz.insidertransactions.list(min_value=1000000, limit=5):
        print(txn.ticker, txn.owner, txn.transaction, txn.value)
except TickerNotFound as exc:
    print(f"not found: {exc}")

print("exercised: stocks.screen / stocks.movers / stock.news.list / insidertransactions.list")
All endpoints · 5 totalmissing one? ·

Retrieve recent insider trading transactions from Finviz. Returns the latest insider buys and sells with transaction details including owner, relationship, cost, shares, and total value. Optionally filter by minimum transaction value to surface only significant activity. Single-page result set.

Input
ParamTypeDescription
min_valueintegerMinimum transaction value in USD. Transactions with Value ($) below this threshold are excluded from results.
Response
{
  "type": "object",
  "fields": {
    "items": "array of insider transaction objects with keys: Ticker, Owner, Relationship, Date, Transaction, Cost, #Shares, Value ($), #Shares Total, SEC Form 4, SEC Form 4 URL"
  },
  "sample": {
    "data": {
      "items": [
        {
          "Cost": "19.70",
          "Date": "Jun 11 '26",
          "Owner": "PL Capital Advisors, LLC",
          "Ticker": "BANC",
          "#Shares": "1,750,000",
          "Value ($)": "34,475,000",
          "SEC Form 4": "Jun 11 09:32 PM",
          "Transaction": "Proposed Sale",
          "Relationship": "Former Director",
          "#Shares Total": "",
          "SEC Form 4 URL": "http://www.sec.gov/Archives/edgar/data/1169770/000089706926001386/xsl144X01/primary_doc.xml"
        }
      ]
    },
    "status": "success"
  }
}

About the Finviz API

Insider Trading and Stock Screener

The get_insider_trading endpoint returns the latest insider buy and sell transactions visible on Finviz, with fields for Ticker, Owner, Relationship, Date, Transaction, Cost, #Shares, and Value ($). The optional min_value parameter accepts an integer in USD and filters out transactions below that threshold, making it straightforward to isolate large, high-conviction moves. The get_screener_results endpoint runs the Finviz screener using standard Finviz filter codes passed as a comma-separated string — for example fa_peg_u1 for PEG ratio under 1, or ta_sma200_pc5 for price near the 200-day moving average. Results return up to 20 stocks per call with fields including Ticker, Company, Sector, Industry, Market Cap, P/E, Price, Change, and Volume.

Market Movers and News Sentiment

The get_market_movers endpoint retrieves one of four lists — top gainers, top losers, most active by volume, or unusual volume stocks — controlled by the mover_type parameter. Each result shares the same column set as the screener: company metadata, valuation, price, and volume. The get_stock_news_sentiment endpoint accepts a ticker symbol and returns every news headline shown on the Finviz quote page for that ticker, tagged Positive, Negative, or Neutral based on keyword classification. Each news object includes date, time, headline, url, source, and sentiment.

General Table Extraction

The get_tabular_data endpoint accepts any Finviz page URL and returns all tables found on that page as structured objects. Each table object carries a table_index (its position on the page), an array of headers, and an array of row objects. This is useful for pulling data from Finviz pages not directly covered by the other four endpoints, such as futures, forex overview tables, or analyst ratings pages.

Reliability & maintenanceVerified

The Finviz API is a managed, monitored endpoint for finviz.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when finviz.com 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 finviz.com 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
9h ago
Latest check
4/4 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 on insider purchases above a dollar threshold using min_value in get_insider_trading
  • Screen for value stocks by passing PEG, P/E, or moving-average filter codes to get_screener_results
  • Track daily top gainers and losers by querying get_market_movers with different mover_type values
  • Score news sentiment for a watchlist of tickers by looping through get_stock_news_sentiment
  • Build a sector rotation monitor using Sector and Change fields from screener or mover results
  • Extract analyst ratings or futures tables from arbitrary Finviz pages via get_tabular_data
  • Correlate C-suite insider selling with price momentum data pulled from the screener endpoint
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 Finviz have an official developer API?+
Finviz offers a paid data subscription called Finviz Elite that includes some data export capabilities, but there is no public REST API with documented endpoints for programmatic access. Details are at https://finviz.com/elite.ashx.
What does `get_stock_news_sentiment` return, and how is sentiment determined?+
It returns all news headlines visible on the Finviz quote page for the requested ticker, with fields for date, time, headline, url, source, and sentiment. Sentiment is classified as Positive, Negative, or Neutral based on the presence of predefined bullish or bearish keywords in the headline text. It is keyword-based, not a trained model score.
How many results do the screener and market mover endpoints return?+
Both get_screener_results and get_market_movers return up to 20 stocks, corresponding to the first page of results on Finviz. Pagination beyond the first page is not currently supported. You can fork this API on Parse and revise it to add offset or page parameters if you need deeper result sets.
Does the API expose individual stock fundamentals like EPS estimates, analyst price targets, or earnings dates?+
Not currently. The endpoints cover screener-level summary fields (P/E, Market Cap, Price, Change, Volume), insider transaction records, news headlines, and market mover lists. Detailed per-stock fundamental data such as EPS estimates, forward guidance, or earnings calendars is not returned by any endpoint. You can fork this API on Parse and revise it to add an endpoint targeting Finviz's individual quote pages for that data.
Are there any known freshness or coverage limitations to be aware of?+
Insider trading data reflects what is currently displayed on the Finviz insider trading page, which itself sources from SEC Form 4 filings; there can be a lag of one to two days after a filing is made before it appears. News sentiment covers only headlines shown on the Finviz quote page, so it does not include full article text or sources that Finviz does not aggregate.
Page content last updated . Spec covers 5 endpoints from finviz.com.
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.
ticker.finology.in API
Search and analyze stocks, view company financials and market indices, track super investors and their holdings, and explore IPO listings and sector performance. Get comprehensive market data including company overviews, financial statements, and real-time dashboard information to make informed investment decisions.
insidertrading.org API
Access insider trading data sourced from SEC Form 4 filings, including buy and sell transactions, filing dates, insider names, share counts, and company details. Filter by ticker, insider, trade type, or date range, and retrieve ranked lists of the most actively traded stocks among corporate insiders.
marketbeat.com API
Track comprehensive stock market data including real-time overviews, analyst ratings, earnings reports, insider trades, and institutional ownership across thousands of companies. Search stocks, analyze financial statements and profitability metrics, monitor short interest, explore options chains, and stay updated with market headlines and competitor analysis.
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.
stockanalysis.com API
Access comprehensive stock market data including real-time financials, income statements, statistics, and IPO calendars to research individual stocks and identify market movers. Search stocks, view detailed overviews, and monitor premarket activity all in structured, easy-to-use format.
yahoofinance.com API
Access live stock quotes, historical price data, company profiles, and financial news for any ticker symbol. Supports real-time market data, OHLCV history across configurable intervals, detailed company fundamentals, and news aggregation across global exchanges.
morningstar.com API
Get comprehensive financial data including stock quotes, company profiles, historical financials, valuation metrics, ownership details, dividends, and market movers from Morningstar. Search securities and access the latest stock news to make informed investment decisions.