Discover/morningstar.com API
live

morningstar.com APImorningstar.com

Access Morningstar data via API: stock quotes, income statements, balance sheets, valuation metrics, ownership, dividends, and market movers. 11 endpoints.

Endpoints
11
Updated
3mo ago
Try it
Search keyword such as a company name or ticker symbol (e.g. Apple, AAPL, MSFT)
api.parse.bot/scraper/ff5e9ddb-e072-40f9-9cbb-800529fa46e5/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/ff5e9ddb-e072-40f9-9cbb-800529fa46e5/search_securities?query=Apple' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 11 totalclick to expand

Search for financial instruments by name or ticker symbol. Returns matching securities (stocks, funds, ETFs) and related news content.

Input
ParamTypeDescription
queryrequiredstringSearch keyword such as a company name or ticker symbol (e.g. Apple, AAPL, MSFT)
Response
{
  "type": "object",
  "fields": {
    "content": "array of related news/article stories with headlines, URLs, and dates",
    "entities": "array of matching securities with performanceID, ticker, exchange, name, investmentType"
  },
  "sample": {
    "data": {
      "content": [
        {
          "type": "story",
          "score": 9.03,
          "value": {
            "id": "76KGPSEYQ6QYF4TEAQJHEVG6WI",
            "headline": {
              "title": "Apple Earnings: Let the iPhone 17 Cycle Rip",
              "subtitle": "We raise our fair value estimate for Apple stock."
            },
            "displayDate": "2026-05-02T10:29:00Z"
          }
        }
      ],
      "entities": [
        {
          "type": "security",
          "score": 30.77,
          "value": {
            "name": "Apple Inc",
            "ticker": "AAPL",
            "exchange": "XNAS",
            "companyID": "0C00000ADA",
            "securityID": "0P000000GY",
            "performanceID": "0P000000GY",
            "investmentType": "EQ",
            "exchangeCountry": "USA"
          }
        }
      ]
    },
    "status": "success"
  }
}

About the morningstar.com API

The Morningstar API exposes 11 endpoints covering real-time stock quotes, multi-year financial statements, valuation multiples, institutional ownership, dividends, and market movers. Starting with search_securities, you can resolve any company name or ticker to a Morningstar performanceID, then pass that ID to endpoints like get_income_statement or get_valuation_metrics to pull structured, historically deep financial data.

Security Lookup and Quotes

All data-fetching endpoints center on a performance_id, which you obtain from search_securities. That endpoint accepts a company name or ticker symbol and returns matching securities with fields including ticker, exchange, investmentType, and performanceID, plus an array of related news articles. Once you have a performance_id, get_stock_quote returns real-time price data: lastPrice, netChange, percentNetChange, bidPrice, askPrice, volume, marketCap, and 52-week high/low — all keyed directly by the performance_id in the response object.

Financial Statements and Valuation

get_income_statement, get_balance_sheet, and get_cash_flow_statement each return a rows array of hierarchical line items. Each row carries a label, a datum array of values aligned to fiscal years listed in columnDefs (e.g., 2016 through TTM), and a subLevel array for child line items. get_valuation_metrics returns two objects — Collapsed for basic ratios (P/S, P/E, P/CF, P/B) and Expanded for advanced ratios including PEG, Earnings Yield, EV/EBIT, and EV/EBITDA — both with their own columnDefs spanning calendar years.

Ownership, Dividends, and News

get_ownership lists the top mutual fund and ETF holders of a security, returning each holder's name, ticker, currentShares, changeAmount, changePercentage, and date. The isRestricted boolean signals whether full data is gated at the access level returned. get_dividends_and_splits surfaces per-year dividend metrics (dividend per share, yield, payout ratio, ex-dividend dates) alongside a dividendData object with detailed history. get_stock_news takes a ticker and exchange code (e.g., XNAS, XNYS) and returns articles with title, subtitle, url, author, displayDate, and format.

Market Movers

get_market_movers requires no inputs and returns three arrays — gainers, losers, and actives — each with current price and percentage change. This endpoint reflects live US market data and returns empty arrays outside regular trading hours (9:30 AM–4:00 PM ET), so build your integration to handle that case.

Common use cases
  • Build a stock screener that resolves tickers via search_securities and displays real-time quotes from get_stock_quote.
  • Construct multi-year financial models by pulling income statement, balance sheet, and cash flow data for side-by-side fiscal year comparison.
  • Track institutional ownership shifts over time using changeAmount and changePercentage fields from get_ownership.
  • Generate valuation dashboards showing P/E, EV/EBITDA, and PEG trends from get_valuation_metrics across multiple calendar years.
  • Monitor dividend history and payout ratio trends using get_dividends_and_splits for income-focused portfolio analysis.
  • Surface daily market movers for a financial news feed using get_market_movers during US trading hours.
  • Aggregate recent analyst commentary and news for a given ticker using get_stock_news with exchange-specific filtering.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 Morningstar have an official developer API?+
Morningstar offers a licensed data platform for institutional clients (morningstar.com/business/data), but it is not a self-serve public API. Access is commercial and requires direct engagement with Morningstar. The Parse API provides structured access to the same publicly visible data without an institutional contract.
What does `get_valuation_metrics` return, and how is it structured?+
It returns two objects: Collapsed covers basic ratios (P/S, P/E, P/CF, P/B) and Expanded covers advanced ratios (P/Forward E, PEG, Earnings Yield, EV, EV/EBIT, EV/EBITDA). Each has its own rows array and columnDefs array of calendar years, so values are positionally aligned to years across both views.
Does `get_market_movers` work at all times of day?+
No. The endpoint returns data only during US market hours (9:30 AM–4:00 PM ET). Outside those hours, the gainers, losers, and actives arrays will be empty. The updatedOn ISO timestamp in the response indicates when the data was last refreshed.
Does the API return quarterly financial statement data?+
Not currently. get_income_statement, get_balance_sheet, and get_cash_flow_statement return annual figures with TTM (trailing twelve months) as the most recent column. You can fork this API on Parse and revise it to add a quarterly statement endpoint if that granularity is required.
Is intraday price history or charting data available?+
Not currently. get_stock_quote returns a point-in-time snapshot of the current price, change, and volume. Historical OHLCV time-series data is not exposed by any current endpoint. You can fork this API on Parse and revise it to add a historical price endpoint.
Page content last updated . Spec covers 11 endpoints from morningstar.com.
Related APIs in FinanceSee all →
cmegroup.com API
Get CME Group market data including FedWatch interest-rate probabilities, futures quotes and settlements, volume/open interest history, and options expirations and near-the-money option chains.
guba.eastmoney.com API
Access Chinese stock discussion posts and comments from Eastmoney's community platform to monitor investor sentiment, search board discussions, and retrieve detailed post information and stock board metadata. Get real-time insights into what traders are discussing about specific stocks through posts, replies, and board analytics.
blur.io API
Access NFT collection data on Blur.io, including floor prices, best bids, listed tokens, and recent activity. Authenticate with an Ethereum wallet to place collection bids and retrieve portfolio holdings.
immobiliare.it API
Search Italian property listings for sale or rent, browse real estate agencies, and explore price trends across Italian cities — all via immobiliare.it.
etoro.com API
Monitor top eToro traders by accessing their profiles, portfolio holdings, performance statistics, and trading history to inform your investment decisions. Discover trending stocks and cryptocurrencies, search for specific instruments, and view detailed market data and news to stay updated on investment opportunities.
blackrock.com API
Access comprehensive BlackRock iShares ETF data to research fund performance, holdings, fees, and sector allocations, plus search and compare specific ETFs. Monitor investment details like distributions, key characteristics, and broad market indices all in one place.
morningstar.com.au API
Access comprehensive financial data for Australian stocks, ETFs, and managed funds including key metrics, valuations, dividends, and historical prices. Search securities, review company profiles and ownership details, and stay informed with market news and upcoming dividend information.
eprocurement.gov API
Monitor India's public procurement opportunities by accessing active tenders, bids closing today, global tenders, high-value contracts, and cancelled tenders from the Central Public Procurement Portal. Search tender details, browse participating organizations, and track real-time procurement statistics to stay informed on government contracting opportunities.