Discover/alphavantage.co API
live

alphavantage.co APIalphavantage.co

Access stock OHLCV data, financial statements, forex rates, crypto prices, technical indicators, and market news from Alpha Vantage via 13 endpoints.

Endpoints
13
Updated
10d ago
Try it
Stock ticker symbol (e.g. IBM, AAPL, MSFT).
Alpha Vantage API key. A built-in key is used when omitted.
api.parse.bot/scraper/d56864ac-4e63-44db-9685-98dd1d46ef02/<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/d56864ac-4e63-44db-9685-98dd1d46ef02/get_daily_time_series?symbol=AAPL' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 13 totalclick to expand

Get daily OHLCV time series for a stock symbol. Returns up to 100 most recent daily data points by default.

Input
ParamTypeDescription
symbolrequiredstringStock ticker symbol (e.g. IBM, AAPL, MSFT).
api_keystringAlpha Vantage API key. A built-in key is used when omitted.
Response
{
  "type": "object",
  "fields": {
    "Meta Data": "object containing symbol, last refreshed date, output size, and time zone",
    "Time Series (Daily)": "object keyed by date strings, each containing open, high, low, close, and volume"
  },
  "sample": {
    "data": {
      "Meta Data": {
        "2. Symbol": "AAPL",
        "5. Time Zone": "US/Eastern",
        "1. Information": "Daily Prices (open, high, low, close) and Volumes",
        "4. Output Size": "Compact",
        "3. Last Refreshed": "2026-05-01"
      },
      "Time Series (Daily)": {
        "2026-05-01": {
          "3. low": "278.3700",
          "1. open": "278.8550",
          "2. high": "287.2200",
          "4. close": "280.1400",
          "5. volume": "77938859"
        }
      }
    },
    "status": "success"
  }
}

About the alphavantage.co API

This API exposes 13 endpoints covering equities, forex, cryptocurrency, and financial statement data from Alpha Vantage. You can pull daily OHLCV time series via get_daily_time_series, retrieve full income statements and balance sheets, calculate technical indicators like RSI and MACD, and fetch market news with per-article sentiment scores — all through a consistent interface without managing Alpha Vantage credentials directly.

Market Prices and Quotes

get_global_quote returns the latest snapshot for a stock symbol, including open, high, low, close, volume, previous close, and change percentage. For historical context, get_daily_time_series returns up to 100 recent trading days of OHLCV data keyed by date string. The search_ticker endpoint accepts a keyword and returns matching symbols with name, type, region, currency, market open/close times, and a numeric match score — useful for letting users resolve company names to tickers before querying price data.

Financial Statements and Earnings

Three endpoints cover the core financial statements: get_income_statement, get_balance_sheet, and get_cash_flow. Each returns both annualReports and quarterlyReports arrays for the requested symbol. get_company_overview adds context with fields like PERatio, MarketCapitalization, Description, Sector, and Industry. For EPS tracking, get_earnings provides annualEarnings and quarterlyEarnings arrays — the quarterly array includes reported date, estimated EPS, reported EPS, and the earnings surprise value.

Forex, Crypto, and Technical Indicators

get_fx_exchange_rate accepts from_currency and to_currency parameters and returns the real-time exchange rate along with bid and ask prices and a last-refreshed timestamp. Cryptocurrency daily OHLCV data is available via get_crypto_daily, which accepts a symbol (e.g. BTC, ETH) and an optional market currency parameter. get_technical_indicator is a flexible endpoint driven by a function parameter that accepts indicator names such as SMA, EMA, RSI, MACD, BBANDS, STOCH, ADX, and others. You can also set interval, time_period, and series_type to control the calculation inputs.

News Sentiment and Market Status

get_news_sentiment returns a feed array of news articles, each carrying title, URL, publication time, authors, summary, source domain, topic classifications, and both an overall sentiment score and a sentiment label. The optional tickers parameter accepts a comma-separated list to filter articles by symbol. get_market_status returns current open/closed status for major exchanges worldwide, including local trading hours and region metadata.

Common use cases
  • Build a stock screener that pulls PERatio, MarketCapitalization, and sector from get_company_overview to filter equities.
  • Display real-time forex bid/ask spreads for currency pairs using get_fx_exchange_rate.
  • Backtest a moving average strategy by feeding get_daily_time_series OHLCV data into a pandas DataFrame.
  • Track earnings surprise history quarter-over-quarter using quarterlyEarnings from get_earnings.
  • Build a news sentiment dashboard that filters articles by multiple tickers using the tickers parameter in get_news_sentiment.
  • Plot RSI or Bollinger Bands on a chart by requesting indicator values from get_technical_indicator with the appropriate function and time_period.
  • Show users which exchanges are currently open using get_market_status before executing a trade alert.
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 Alpha Vantage have an official developer API?+
Yes. Alpha Vantage provides an official REST API documented at https://www.alphavantage.co/documentation/. This Parse API surfaces 13 of those endpoints with a unified key management layer, so you do not need to handle your own API key to get started.
What does `get_technical_indicator` return and which indicators are supported?+
The endpoint returns a Meta Data object and a Technical Analysis object keyed by date strings. Each date entry contains the computed indicator value(s) for that period. The function parameter controls which indicator is calculated; supported values include SMA, EMA, RSI, MACD, BBANDS, STOCH, ADX, CCI, AROON, and MFI. You can further tune the calculation with interval (e.g. daily, 15min), time_period, and series_type (open, high, low, close).
Does `get_daily_time_series` return full historical data going back many years?+
By default it returns up to 100 most recent trading days. The underlying Alpha Vantage API supports an outputsize=full parameter for longer history, but that option is not currently exposed as an input on this endpoint. You can fork the API on Parse and revise it to pass outputsize=full to retrieve extended historical data.
Is intraday (minute-level) OHLCV data available through this API?+
Not currently. The equity price endpoints cover daily granularity via get_daily_time_series and get_global_quote. Intraday intervals are available through Alpha Vantage's official API but are not exposed as a dedicated endpoint here. You can fork the API on Parse and revise it to add an intraday time series endpoint.
What is a known limitation of the financial statement endpoints?+
The income statement, balance sheet, and cash flow endpoints return data only for US-listed equities that Alpha Vantage covers. Symbols that are delisted, very thinly traded, or listed exclusively on non-US exchanges may return empty report arrays. The get_company_overview endpoint can be used to confirm whether a symbol has data before requesting its statements.
Page content last updated . Spec covers 13 endpoints from alphavantage.co.
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.