Morningstar Fund & ETF Scraper avatar

Morningstar Fund & ETF Scraper

Pricing

from $30.00 / 1,000 fund or etf record returneds

Go to Apify Store
Morningstar Fund & ETF Scraper

Morningstar Fund & ETF Scraper

Scrape public Morningstar fund and ETF quote pages for identifiers, ratings, category, fees, assets, price, yield, and performance metrics.

Pricing

from $30.00 / 1,000 fund or etf record returneds

Rating

0.0

(0)

Developer

Muhammad Afzal

Muhammad Afzal

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

13 days ago

Last modified

Categories

Share

Scrapes public Morningstar quote pages for mutual funds and ETFs. Each dataset item can include the fund name, ticker, ISIN, security ID, category, Morningstar ratings, price, currency, expense ratio, yield, assets, as-of text, and available performance periods.

Input

  • startUrls: public Morningstar quote or search URLs. Quote URLs are the most reliable input.
  • identifiers: ticker or Morningstar security IDs. These are converted to US ETF or mutual-fund quote URLs according to securityType.
  • securityType: etf or mutual-fund for identifier inputs.
  • maxResults: 1–100 unique records.
  • useApifyProxy: enables the Apify-managed US proxy by default.

Morningstar may challenge automated traffic or restrict some analysis to subscribers. The Actor reports a blocked or empty outcome in SUMMARY and does not fabricate records or bypass access controls. Data fields are only populated when exposed on the public page.

Output and pricing

One valid dataset record is one fund-record PPE event at $0.03. The Actor writes a SUMMARY key-value record with result count, warnings, blocker state, and charged result events.

Example quote URL:

https://www.morningstar.com/etfs/xnas/spy/quote

What data does Morningstar Fund & ETF Scraper return?

FieldTypeDescription
securityIdstring or nullMorningstar security ID
tickerstring or nullTicker
isinstring or nullISIN
namestringFund or ETF name
securityTypestring or nullSecurity type
urlstringMorningstar quote URL
categorystring or nullMorningstar category
starRatingnumber or nullMorningstar star rating
medalistRatingstring or nullMorningstar Medalist Rating
sustainabilityRatingstring or nullSustainability rating
pricenumber or nullPrice
currencystring or nullCurrency
expenseRationumber or nullExpense ratio (%)
yieldnumber or nullYield (%)
assetsnumber or nullAssets
asOfstring or nullAs-of text
performanceobjectPerformance (%)
scrapedAtstringScraped at

Use cases

  • Run a one-off research job and export the structured result as JSON, CSV, Excel, XML, or RSS from Apify.
  • Schedule the same input to monitor changes over time and send completed datasets to a webhook or integration.
  • Feed schema-shaped records into a database, spreadsheet, BI tool, or AI workflow with the source URL retained for verification.

Input example

{
"startUrls": [
{
"url": "https://www.morningstar.com/etfs/xnas/spy/quote"
}
],
"identifiers": [
"SPY",
"VTI"
],
"securityType": "etf",
"maxResults": 10,
"useApifyProxy": true
}

Run Morningstar Fund & ETF Scraper with the Apify API

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('muhammadafzal/morningstar-fund-etf-scraper').call({
"startUrls": [
{
"url": "https://www.morningstar.com/etfs/xnas/spy/quote"
}
],
"identifiers": [
"SPY",
"VTI"
],
"securityType": "etf",
"maxResults": 10,
"useApifyProxy": true
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

You can also run the Actor from Apify Console, schedules, webhooks, the REST API, Make, Zapier, n8n, or the hosted Apify MCP server.

Responsible use

Use this Actor only for data you are authorized to access. Follow the target website's terms, robots and access policies, and applicable privacy, database, copyright, anti-spam, and data-protection laws. Do not use it to bypass authentication or other access controls, collect private data, harass people, or make high-impact decisions without independent verification.

Support

When reporting a problem, include the Actor run ID, a redacted input, the expected result, and a small public example URL when applicable. Do not post API tokens, cookies, credentials, or personal data in an issue.

Frequently asked questions

Can I schedule Morningstar Fund & ETF Scraper?

Yes. Use an Apify schedule to run the same saved input at a chosen interval, then connect a webhook or integration to process the dataset when the run finishes.

How should I test a new input?

Begin with the prefilled example or a small limit. Confirm that the output fields, source coverage, runtime, and live charges match your workflow before increasing the scope.

How do I export the results?

Open the run's default dataset in Apify Console and export JSON, CSV, Excel, XML, or RSS. Applications can retrieve the same records through the Apify API client or REST dataset endpoint.

Can an AI agent call this Actor?

Yes. Add muhammadafzal/morningstar-fund-etf-scraper through the hosted Apify MCP server or call it through the API. The Actor's input and dataset schemas help agents construct valid requests and interpret returned records.