Get company overview
Tags: #alphavantage #trading #market_data #investors #snippet #dataframe
Description: This notebook provides an overview of the AlphaVantage API, which allows users to access real-time and historical financial data for global equities, commodities, and currencies. It provides a comprehensive set of tools to analyze and visualize financial data for a variety of purposes.
import requests
import pandas as pd
API_KEY = "demo"
COMPANY = "IBM"
response = requests.get(
f"https://www.alphavantage.co/query?function=OVERVIEW&symbol={COMPANY}&apikey={API_KEY}"
)
data = response.json()
data
Last modified 1mo ago