Error code 429 | Client Error: Too Many Requests - Too many requests, please try again later.

image

Hi. We are looking for the maximum price, the minumum price, and the max and min closing price for a period for a list of RICS and Eikon API says Error code 429 Client Error: Too Many Requests - Too many requests, please try again later.

We are downloading info for less than 100 Rics.

In the image you can see some inputs and the code.

This is urgent for Banco Santander.

Thanks in advance.

PD: Please note after this error, we can download data for two single RICs. It seems
it is not related with daily limits (but we're not sure).
<br>

Best Answer

  • Alex Putkov.1
    Alex Putkov.1 ✭✭✭✭✭
    Answer ✓

    There's indeed a limit on how many requests can be sent per second. But given that data retrieval methods of Eikon Data APIs are synchronous executing these methods in a loop or inside dataframe 'apply' method in itself is highly unlikely to saturate the throttle. I think realistically the throttle will only be saturated by code running on multiple threads. I think there must have been something else (another Julyter notebook or another script executed in a separate process) running on the machine when the issue occurred.
    It may nevertheless be preferable to retrieve timeseries for multiple RICs in a single request, as @davidk suggested. However in this case I would advise using get_data method rather than get_timeseries because get_timeseries returns a max of 3K rows of timeseries per request, and this limit is shared by all RICs in the same request. get_data method does not impose such limitation.
    Whichever method you choose to use, I suggest always keeping an eye open for multiple scripts running simultaneously.

Answers