romeltorres/alpha_vantage

A python wrapper for Alpha Vantage API for financial data.

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 30 minutes ago
Added to GitGenius on September 14th, 2026
Created on April 29th, 2017
Open Issues & Pull Requests: 3 (+0)
GitHub issues: Enabled
Number of forks: 780
Total Stargazers: 4,923 (+0)
Total Subscribers: 176 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 36.7 hours
Mean response time: 8.0 days
90th percentile: 37.8 days
Tracked items: 9

Most active contributors

Sign in to see contributor activity.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 0
New in 7 days: 0
Closed in 7 days: 0
Avg open age: N/A days
Stale 30+ days: 0
Stale 90+ days: 0

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • av_issue (2)
  • question (1)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

alpha_vantage is a Python wrapper for the Alpha Vantage API that retrieves stock market data and cryptocurrency information.

The tool solves the problem of accessing real-time financial data and technical indicators by providing a Python interface to Alpha Vantage's free API. It handles the complexity of making API calls and parsing responses, returning data in either JSON or pandas DataFrame format. Users need only an API key from Alpha Vantage to begin retrieving market data.

The project suits developers building financial applications, trading tools, or data analysis scripts that need programmatic access to stock prices, cryptocurrency data, and technical indicators. It works well for those who prefer working in Python and want to avoid manual HTTP requests to the API. The README mentions alternatives for code-less access, including Wisesheets and official Alpha Vantage add-ons for Google Sheets and Microsoft Excel, though these serve different use cases. For developers migrating from IEX Cloud, the tool now provides compatibility with that service's shutdown.

The project maintains broad API coverage, supporting options, commodities, economic indicators, and fundamental data alongside traditional stock and cryptocurrency endpoints. Asynchronous support via asyncio is available for concurrent requests. The wrapper handles both standard Alpha Vantage keys and RapidAPI key integration. Pandas is an optional dependency rather than required, allowing lightweight use without the full data science stack. The codebase has evolved to use Python's requests library for thread-safe operations and maintains column naming that matches Alpha Vantage's JSON responses directly.