Discover/MarketBeat API
live

MarketBeat APImarketbeat.com

Access MarketBeat stock data via API: analyst ratings, earnings, insider trades, short interest, options chains, financials, and more across 14 endpoints.

Endpoint health
verified 7d ago
get_analyst_ratings
get_institutional_ownership
get_profitability_metrics
search_stocks
get_stock_overview
14/14 passing latest checkself-healing
Endpoints
14
Updated
22d ago

What is the MarketBeat API?

The MarketBeat API covers 14 endpoints for pulling structured stock market data including analyst forecasts, earnings estimates, insider transactions, institutional ownership, and financial statements. The get_stock_overview endpoint alone returns current price, day change, key stats, company description, and a company calendar in a single call. Ticker-based lookups accept an optional exchange parameter to disambiguate symbols listed on multiple venues.

Try it
Search keyword such as a company name or ticker symbol (e.g. 'AAPL' or 'Apple').
api.parse.bot/scraper/060a9926-db20-4c1e-8dc7-26d52b79ee8e/<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/060a9926-db20-4c1e-8dc7-26d52b79ee8e/search_stocks?query=AAPL' \
  -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 marketbeat-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.

from parse_apis.marketbeat_stock_data_api import MarketBeat, Stock, StockNotFound

client = MarketBeat()

# Search for stocks by name
for stock in client.stocks.search(query="Apple"):
    print(stock.ticker, stock.exchange, stock.name)

# Get a specific stock's overview
apple = client.stocks.get(ticker="AAPL")

# Navigate to analyst ratings sub-resource
for rating in apple.analyst_ratings.list():
    print(rating.date, rating.buy, rating.sell, rating.hold, rating.total_ratings)

# Get forecast data
forecast = apple.forecast.get()
print(forecast.consensus_rating_breakdown, forecast.consensus_comparison)

# Get earnings estimates
for estimate in apple.earnings.list():
    print(estimate.quarter, estimate.average_estimate, estimate.revenue_estimate)

# Get short interest
si = apple.short_interest.get()
print(si.summary)
for report in si.history:
    print(report.report_date, report.days_to_cover, report.percentage_of_float_shorted)

# Get MarketRank
rank = apple.market_rank.get()
print(rank.percentile, rank.overall_score)

# Get recent headlines
for headline in apple.headlines.list():
    print(headline.title, headline.source, headline.date)
All endpoints · 14 totalmissing one? ·

Search for stock tickers by company name or symbol. Returns matching stocks with ticker, exchange, name, and URL path. Also returns related MarketBeat articles when available.

Input
ParamTypeDescription
queryrequiredstringSearch keyword such as a company name or ticker symbol (e.g. 'AAPL' or 'Apple').
Response
{
  "type": "object",
  "fields": {
    "items": "array of search results with ticker, exchange, name, and url"
  },
  "sample": {
    "data": {
      "items": [
        {
          "url": "/stocks/NASDAQ/AAPL/",
          "name": "Apple Inc.",
          "ticker": "AAPL",
          "exchange": "NASDAQ"
        }
      ]
    },
    "status": "success"
  }
}

About the MarketBeat API

Stock Data Coverage

The API centers on ticker-based lookups. Pass a ticker string — and optionally an exchange such as NYSE, NASDAQ, or BATS — to most endpoints. search_stocks accepts a free-text query and returns matching results with ticker, exchange, name, and url fields, making it a useful first step when you only have a company name. get_stock_overview returns current_price, day_change, key_stats, description, and a company_calendar for upcoming events.

Analyst and Sentiment Data

get_stock_forecast returns a consensus_rating_breakdown array showing rating counts over time alongside a consensus_comparison array that benchmarks the stock against its sector and the S&P 500. get_analyst_ratings gives a monthly time series with Sell, Hold, Buy, StrongBuy, and TotalRatings counts per period — useful for tracking sentiment drift. get_marketrank exposes MarketBeat's proprietary scoring system: an overall percentile, an overall_score, and a components object mapping category names to individual scores.

Ownership and Trade Activity

get_insider_trades returns records with transaction dates, insider names, buy/sell action, share counts, and prices. get_institutional_ownership lists top institutional holders and their positions. get_short_interest provides both a summary object of current stats and a history array of periodic short interest records. get_options_chain returns call and put records with strike prices, volumes, and related option details.

Financials and Metrics

get_financial_statements returns a statements object keyed by statement names — such as annual income statements, cash flow statements, and balance sheets — each mapping to arrays of row objects. get_earnings returns a history array with quarterly and annual records including Number of Estimates, Low Estimate, High Estimate, and revenue guidance. get_profitability_metrics returns a flat key-value object covering EPS, P/E Ratio, Net Margins, Return on Equity, and Debt-to-Equity, among others. get_competitors returns comparison sections categorized by profitability, sentiment, and financials.

Reliability & maintenanceVerified

The MarketBeat API is a managed, monitored endpoint for marketbeat.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when marketbeat.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 marketbeat.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
7d ago
Latest check
14/14 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
  • Build an analyst sentiment tracker that monitors monthly Buy/Hold/Sell ratio changes via get_analyst_ratings
  • Alert on unusual insider buying or selling activity using transaction data from get_insider_trades
  • Compare a stock's MarketRank component scores across categories using get_marketrank percentile and score fields
  • Aggregate short interest history to identify short squeeze candidates via get_short_interest history arrays
  • Pull annual income statements and balance sheets from get_financial_statements for multi-year financial modeling
  • Screen for stocks by profitability metrics like Net Margins and Return on Equity using get_profitability_metrics
  • Benchmark a company against sector peers by pulling profitability and sentiment comparison tables from get_competitors
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 MarketBeat have an official developer API?+
MarketBeat does not publish a public developer API. The data accessible here reflects what is available on the MarketBeat website at marketbeat.com.
What does `get_earnings` return, and does it include actual reported EPS values?+
The endpoint returns a history array of quarterly and annual records with fields for Number of Estimates, Low Estimate, High Estimate, and revenue guidance. Reported (actual) EPS values alongside estimates are part of the same records where MarketBeat surfaces them. The endpoint does not currently return real-time surprise flags or beat/miss labels as separate structured fields. You can fork the API on Parse and revise it to add those derived fields.
Can I retrieve options data for a specific expiration date?+
get_options_chain returns available call and put records with strike prices, volumes, and option details, but the endpoint does not currently accept an expiration date filter — it returns the chain as MarketBeat presents it. You can fork the API on Parse and revise it to add expiration-date filtering logic.
Does the API cover dividend history or dividend yield data?+
Dividend history is not currently a dedicated endpoint. get_stock_overview includes key_stats which may surface yield figures, and get_profitability_metrics returns valuation metrics, but there is no structured dividend payment timeline endpoint. You can fork the API on Parse and revise it to add a dedicated dividend history endpoint.
How fresh is the data returned by endpoints like `get_stock_overview` and `get_short_interest`?+
Data freshness reflects what MarketBeat displays on its pages at the time of the request. Short interest data is reported on a bi-monthly schedule by exchanges, so get_short_interest history intervals are constrained by that upstream cadence rather than intraday updates.
Page content last updated . Spec covers 14 endpoints from marketbeat.com.
Related APIs in FinanceSee all →
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.
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.
companiesmarketcap.com API
Track real-time market capitalization and rankings for global companies, search for specific firms, and access detailed financial metrics and historical performance data. Get comprehensive company profiles including current market position and financial trends to compare and analyze investment opportunities.
benzinga.com API
Access real-time stock quotes, company fundamentals, financial news, and analyst ratings all in one place to make informed investment decisions. Track market movements and research companies with up-to-date pricing, ratings, and news coverage.
nasdaq.com API
Track real-time and historical stock prices, ETF and mutual fund quotes, cryptocurrency data, and comprehensive company financials including earnings, dividends, and SEC filings all from one source. Research market trends with institutional holdings, short interest data, retail trading activity, and market movers to make informed investment decisions.
marketindex.com.au API
Track ASX stock market data including company information, stock prices, dividends, director transactions, and sector performance. Search for stocks, monitor upcoming dividends, view market announcements, and analyze investment opportunities across the Australian securities exchange.
bloomberg.com API
Track stock indices, commodities, currencies, and bonds in real-time, while monitoring market movers and staying updated with the latest financial news. Get comprehensive Bloomberg market data to make informed investment decisions across multiple asset classes.
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.