Finnhub Python API Client. Finnhub API provides institutional-grade financial data to investors, fintech startups and investment firms. We support real-time stock price, global fundamentals, global ETFs holdings and alternative data. https://finnhub.io/docs/api
I have a premium plan that should limit me to 150 requests per minute for the call transcripts endpoint.
The response headers send back the correct amount of requests, but using the transcripts() method results in a 429 response:
Here is my code:
for k in call_ids: r = finnhub_client.transcripts(k) all_spx_call_transcripts.append(r) time.sleep(0.5)
I get the following response after 60 requests:
`C:\Anaconda\envs\leap\lib\site-packages\finnhub\client.py in _handle_response(response)
42 def _handle_response(response):
43 if not response.ok:
---> 44 raise FinnhubAPIException(response)
45
46 try:
FinnhubAPIException: FinnhubAPIException(status_code: 429): JSON error message from Finnhub: API limit reached. Please try again later.`
I have a premium plan that should limit me to 150 requests per minute for the call transcripts endpoint. The response headers send back the correct amount of requests, but using the transcripts() method results in a 429 response:
Here is my code:
for k in call_ids: r = finnhub_client.transcripts(k) all_spx_call_transcripts.append(r) time.sleep(0.5)
I get the following response after 60 requests: