An error occurred while requesting URL('http://localhost:9008/api/rdp/data/historical-pricing/v1/views/intraday-summaries/MXN%3D?interval=PT1M&start=2026-04-27T07%3A00%3A00.000000000Z&end=2026-04-28T00%3A00%3A00.000000000Z&fields=MID_PRICE%2CDATE_TIME').
ReadTimeout('timed out')
Error fetching MXN=: timed out
@Yashaswini
Thank you for reaching out to us.
It could be the HTTP client timeout. The client may try increase the timeout value.
If the client is using the LSEG Data Library for Python, the client can increase the HTTP timeout via the following configuration.
{ "http":{ "request-timeout": 600 }, … }
Otherwise, the client can change the HTTP timeout configuration in the code.
config = ld.get_config() config.set_param("http.request-timeout", 600) ld.open_session()
However, this configuration can't solve the issue, it could be a network issue.