Alpha Vantage randomly says Invalid API Call
问题 I have code in python that periodically fetches data for a particular ticker. import pandas as pd import time def intraday(ticker, interval, key): """ Returns interday data """ url = f'https://www.alphavantage.co/query?function=TIME_SERIES_INTRADAY&symbol={ticker}&interval={interval}&apikey={key}&datatype=csv' df = pd.read_csv(url) df = df.reset_index() while True: print(intraday('AAPL', '1min', key) time.sleep(60) The problem that I face, is that this code works well most of the time.