Alpha Vantage website screenshot

Alpha Vantage

Alpha Vantage provides a single REST market-data API at https://www.alphavantage.co/query exposing 100+ functions across stocks (intraday/daily/weekly/monthly time series, global quote), fundamentals (income statement, balance sheet, cash flow, earnings), forex, crypto, commodities, economic indicators, technical indicators (50+ TA functions), Alpha Intelligence (news, sentiment, insider transactions, top gainers/losers), and options data. Authentication is by apikey query parameter; output is JSON or CSV.

1 APIs 0 Features
FintechMarket DataStocksFXCryptoCommoditiesEconomic IndicatorsTechnical IndicatorsFundamentalsNewsSentimentFree

APIs

Alpha Vantage Market Data API

Single function-style REST endpoint that exposes the full Alpha Vantage catalog. Each call includes a function= query parameter (e.g. TIME_SERIES_INTRADAY, GLOBAL_QUOTE, OVERVIE...

Collections

Pricing Plans

Rate Limits

Alpha Vantage Rate Limits

7 limits

RATE LIMITS

FinOps

Semantic Vocabularies

Alpha Vantage Context

0 classes · 35 properties

JSON-LD

API Governance Rules

Alpha Vantage API Rules

15 rules · 8 errors 6 warnings 1 info

SPECTRAL

JSON Structure

Alpha Vantage Api_Response Structure

1 properties

JSON STRUCTURE

Alpha Vantage Company_Overview Structure

13 properties

JSON STRUCTURE

Alpha Vantage Economic_Data_Point Structure

2 properties

JSON STRUCTURE

Alpha Vantage Error_Response Structure

3 properties

JSON STRUCTURE

Alpha Vantage Exchange_Rate Structure

9 properties

JSON STRUCTURE

Alpha Vantage Global_Quote Structure

10 properties

JSON STRUCTURE

Alpha Vantage News_Article Structure

5 properties

JSON STRUCTURE

Alpha Vantage Time_Series_Data Structure

5 properties

JSON STRUCTURE

Example Payloads

Resources

🔗
LinkedIn
LinkedIn
🌐
Portal
Portal
🔗
Documentation
Documentation
💰
Pricing
Pricing
👥
GitHub
GitHub
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Alpha Vantage API
  version: 1.0.0
request:
  auth:
    type: apikey
    key: apikey
    value: '{{apikey}}'
    placement: query
items:
- info:
    name: Stock Time Series
    type: folder
  items:
  - info:
      name: Alpha Vantage Query Stock Time Series
      type: http
    http:
      method: GET
      url: https://www.alphavantage.co/query
      params:
      - name: function
        value: TIME_SERIES_DAILY
        type: query
        description: API function to call
      - name: symbol
        value: IBM
        type: query
        description: Stock ticker symbol (required for most functions)
      - name: interval
        value: 5min
        type: query
        description: Time interval for intraday or indicator data
      - name: outputsize
        value: compact
        type: query
        description: Amount of data to return
      - name: datatype
        value: json
        type: query
        description: Output format
      - name: time_period
        value: '14'
        type: query
        description: Number of data points to calculate technical indicators
      - name: series_type
        value: close
        type: query
        description: Price series type for technical indicators
      - name: from_currency
        value: USD
        type: query
        description: Source currency code for forex/crypto queries
      - name: to_currency
        value: JPY
        type: query
        description: Destination currency code for forex/crypto queries
      - name: tickers
        value: IBM,AAPL
        type: query
        description: Comma-separated ticker symbols for news sentiment
      - name: keywords
        value: tencent
        type: query
        description: Search keywords for symbol search
      - name: limit
        value: '50'
        type: query
        description: Number of results to return
      - name: apikey
        value: demo
        type: query
        description: Alpha Vantage API key
    docs: Retrieve intraday or daily/weekly/monthly stock time series data. Use the function parameter to select TIME_SERIES_INTRADAY,
      TIME_SERIES_DAILY, TIME_SERIES_DAILY_ADJUSTED, TIME_SERIES_WEEKLY, or TIME_SERIES_MONTHLY.
bundled: true