Hi Team,
Since the client encountered problems using the RDP Python library for their solution, particularly with accessing historical prices, they have opted to use the Python requests library (with examples provided in the API Playground) to retrieve data. Here is a sample request for historical prices:
url = f"https://api.refinitiv.com/data/historical-pricing/v1/views/interday-summaries/{ticker}"
response = requests.get(
url,
headers=headers,
params={
'start': start_date,
'end': end_date,
'adjustments': 'exchangeCorrection,RPO',
'qos': 'delayed'
}
)
I am wondering if it is possible to retrieve batch data using the requests library for Historical Pricing. I came across this article: https://community.developers.refinitiv.com/questions/90817/requesting-large-data-amounts-in-batches-via-rdp-a.html, but it appears to use the RDP Python library.
Additionally, is there a way to parallelize the requests for historical pricing data retrieval?
Thanks!