Alpha Vantage Public Market Data Scraper avatar

Alpha Vantage Public Market Data Scraper

Pricing

from $19.00 / 1,000 results

Go to Apify Store
Alpha Vantage Public Market Data Scraper

Alpha Vantage Public Market Data Scraper

Scrapes Alpha Vantage public endpoints for stock, forex, and crypto market data. Returns intraday prices, daily OHLCV, technical indicators, and company fundamentals as flat rows.

Pricing

from $19.00 / 1,000 results

Rating

0.0

(0)

Developer

ParseForge

ParseForge

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

0

Monthly active users

21 hours ago

Last modified

Share

ParseForge

Alpha Vantage Public Market Data Scraper

Scrape stock, forex, and crypto market data from Alpha Vantage, up to a million records per run. Pull intraday prices, daily OHLCV, technical indicators, and company fundamentals for any symbol. Export to CSV, JSON, Excel, or XML.

Alpha Vantage's free API key is rate-limited to 25 calls per day, which stops most backtesting and bulk research before it starts. This Actor reads the public endpoints directly, letting you pull time series, technical indicators, and fundamental data for thousands of symbols without managing API keys or worrying about call counters. You get one flat row per data point, ready for analysis.

Who uses itWhat they scrape Alpha Vantage for
Quantitative analystsBacktesting trading strategies on years of daily adjusted prices.
Market researchersComparing company fundamentals across an entire sector.
Crypto tradersPulling intraday Bitcoin or Ethereum prices for signal generation.
Financial data engineersBuilding internal market data lakes from a single consistent schema.

What it does

This Actor collects market data from Alpha Vantage by function and symbol, and returns each data point as a flat row.

  • ๐Ÿ“ˆ Stock time series: intraday, daily, daily adjusted, weekly, and monthly OHLCV for any symbol.
  • ๐Ÿ’ฑ Forex and crypto: exchange rates, FX daily, and digital currency daily with from/to currency pairs.
  • ๐Ÿ“Š Technical indicators: SMA, EMA, RSI, and MACD computed directly from the source data.
  • ๐Ÿข Company fundamentals: overview, earnings, income statement, balance sheet, and cash flow statements.
  • ๐Ÿ”‘ Optional API key: use the public demo key for quick tests, or bring your own free key for higher limits.

Results export to CSV, JSON, Excel, or XML, or straight from the API.

What you can do with Alpha Vantage data

๐Ÿ“‰ Backtest a trading strategy.

A quant pulls 20 years of daily adjusted prices for the S&P 500 and runs a momentum strategy in Python.

๐Ÿข Screen for value stocks.

A researcher scrapes the balance sheet and income statement for every NASDAQ symbol to filter on debt-to-equity.

โ‚ฟ Monitor crypto signals.

A trader collects 1-minute intraday data for BTC and ETH to feed a real-time RSI dashboard.

๐Ÿ’น Build a currency heatmap.

A data engineer pulls daily FX rates for 20 currency pairs and loads them into a PostgreSQL database.

Why choose this scraper

What you get
No rate-limit headachesBypass the 25 calls/day limit of a free Alpha Vantage key by scraping the public endpoints directly.
One fixed schemaEvery function returns a flat, predictable row so you never write another parser.
Full history or compactPull the full available history or the last 100 data points with one setting.
Works for stocks, FX, and cryptoOne Actor covers equities, currency pairs, and digital currencies.

How it compares

No other Store actor targets Alpha Vantage the same way, so the honest comparison is with the alternatives teams actually weigh.

Alpha Vantage Public Market Data ScraperBuild it in-houseBy hand
SetupRun it now, zero configDays of engineeringNone, but hours per pull
When Alpha Vantage changesMaintained for youYou fix itYou re-learn the page
Proxies, retries, anti-botBuilt inYour problemBrowser only
OutputFixed JSON schema, CSV/Excel exportWhatever you buildCopy-paste
CostPay per resultEngineering timeAnalyst hours

Configure the run

Drive the Actor from a single function and symbol, with optional currency pairs for FX and crypto, and control how many records to collect per run. The Input tab lists every parameter.

A first run with the defaults:

{
"function": "TIME_SERIES_DAILY",
"symbol": "IBM",
"maxItems": 10
}

A larger pull:

{
"function": "TIME_SERIES_DAILY",
"symbol": "IBM",
"maxItems": 200
}

Pricing

Pay-per-result: $0.021 per result collected. You pay only for the results written to your dataset.

Results collectedApproximate cost
100 results$2.10
1,000 results$21.00
10,000 results$210.00

New Apify accounts start with $5 in free credit.

Free users

Free-plan runs return up to 10 results as a preview. Upgrade your Apify plan to collect up to 1,000,000 results per run.

Run it

  1. Create a free Apify account with $5 in credit.
  2. Open the Alpha Vantage Public Market Data Scraper.
  3. Set your inputs and any filters, then click Start.
  4. Export the results as CSV, Excel, JSON, or XML from the Dataset tab.

Run it programmatically through the Apify API (run-sync-get-dataset-items) or the ApifyClient for JavaScript and Python.

Use with AI agents (MCP)

Give an AI agent live access to Alpha Vantage through the Model Context Protocol. Add the Actor to Claude, Cursor, or any MCP client:

$claude mcp add --transport http apify "https://mcp.apify.com?tools=parseforge/alpha-vantage-public-scraper"

Then prompt it in plain language to run the scraper and read back the results.

Troubleshooting

Why am I getting no results?

Check that the symbol is valid on Alpha Vantage. Try a known symbol like IBM or AAPL. If you are using a currency pair, make sure both fromCurrency and toCurrency are filled.

The run fails with an error about the API key.

The demo key has very low limits. If you hit them, sign up for a free key at alphavantage.co/support/#api-key and paste it into the optional API key field.

I only got 100 records even though I asked for more.

You likely have the output size set to 'compact'. Switch it to 'full' to get the complete history.

The data looks stale or not updating.

Alpha Vantage endpoints update on a fixed schedule (daily data typically updates after market close). Intraday data has a few minutes of delay. This is a source limitation, not an Actor issue.

My crypto symbol is not working.

Use the Digital Currency Daily or Crypto Intraday functions, and make sure the symbol is supported (e.g., BTC, ETH). The standard stock functions do not accept crypto symbols.

FAQ

QuestionAnswer
Do I need an Alpha Vantage API key?No. The Actor works with the public demo key by default. You can optionally add your own free key from alphavantage.co if you need higher request volumes.
What is the difference between Daily and Daily Adjusted?Daily returns raw close prices. Daily Adjusted applies split and dividend adjustments so you can compare prices accurately across long time periods.
Can I pull data for multiple symbols in one run?Each run targets one symbol and one function. To pull multiple symbols, run the Actor once per symbol, or use an Apify task to loop over a list.
How many records can I collect?You set the maximum records per run, up to 1,000,000. The actual number depends on the function and the output size you choose.
Does this work for Indian stocks or other non-US exchanges?Alpha Vantage supports many global symbols. Use the exchange suffix (e.g., TCS.BSE) if the symbol is not on a US exchange.
What format does the data come in?Each data point is a flat row. You can export the full dataset to CSV, JSON, Excel, or XML from the Apify dataset tab.
Can I get real-time intraday data?The Intraday function returns 1-minute to 60-minute bars. The data is near real-time, with a typical delay of a few minutes from the exchange.
Is this legal to scrape?Alpha Vantage provides public endpoints for market data. This Actor reads those endpoints. Always review the source's terms of service for your use case.
What is the difference between compact and full output size?Compact returns the last 100 data points. Full returns the entire available history for that function and symbol.
Can I get company earnings and financial statements?Yes. Use the Earnings, Income Statement, Balance Sheet, or Cash Flow functions to pull fundamental data for any symbol.

Browse the full ParseForge collection for more scrapers.

๐Ÿ†˜ Need help? Email parseforge@protonmail.com with your run ID, your input, and what you expected.

โš ๏ธ Disclaimer. This Actor is unofficial and is not affiliated with, endorsed by, or sponsored by Alpha Vantage Inc. It collects only publicly available data. You are responsible for using the collected data in compliance with the source's terms of service and applicable data-protection laws, including GDPR, CCPA, and PIPL. Do not use it to collect personal data unlawfully.