-
How to get the ISIN for All Security types (futures, commodities, etc)
Hello, I was wondering how I could get the ISIN for security types other than Equities such as futures or commodities? For example, I'm looking to find the ISIN for the RIC ESU25. Based on the github examples, I can only get the ISIN for equities.
-
Opening LSEG Data library Session without Opening LSEG Desktop Workspace
Hello, In my backend, I open a session to connect to LSEG data library API and have the lseg_data.config.json configured so that it uses the LDP platform to open the session. However, when I start my application, I get a "ValueError: Session is not opened. Can't send any request". I have to then open up LSEG Desktop…
-
How do I access alternative close prices via python API
Help! Is it possible to access alternative close prices from the python API? For example BRTDTDMc1 has 2 close prices. ASIA_CLOSE, EU_CLOSE, US_CLOSE, I want to access the ASIA close price as I am trying to find a common timestamp for the below list of prices. Reuters Code' : ['DUBSGSWMc2', 'MRBN1MMASc1', 'OQc1',…
-
I keep getting blocked using the API it get a 429 error
Hello team, raising this case on behalf of client xxxxx rates = [ Rate(5, Duration.SECOND), # 5 calls per second Rate(10000, Duration.DAY), # 10,000 calls per day ] limiter = Limiter(rates, clock=TimeClock()) ------------------------------------------------------------------Global expiry lookup – populated during discovery…
-
Please can you explain why there is a lag on receiving EIA stats data via a script i have written?
Hi team, I am posting on behalf of an external client for the query below, please help and prioritize: Please can you explain why there is a lag on receiving EIA stats data via a script i have written using the appkey? from lseg.data.content import historical_pricing as hp from datetime import date import os 1. Correct RIC…
-
App key is incorrect
I am getting this error. I've tried using a new API key but it isn't being resolved: 2025-08-05 11:51:37,203 P[50440] [MainThread 14636] Error on handshake url http://127.0.0.1:9000/api/handshake : EikonError(1, 'Status code 400: App key is incorrect')
-
HOLIDAY LIST using Eikon API in Python Dataframe
I tried to get the Holiday List using Eikon API in Python but no help, can we get in Python pandas dataframe so that we can use it and play with it ? Please see attached my query in python script.
-
How to get Reuters long Term outlook data through Workspace API?
Running this scripts import refinitiv.data as rd rd.open_session() rd.get_history(universe=["pUSCPNY=E","pUSCPNY=M","pUSCPNY=L","pUSCPNY=H"],interval="quarterly",start="2022-01-31",end="2025-12-31") But I am looking for The poll_date for the economic indicator forecasts, which is not displayed below after running the code.…
-
Client is using Jupyter API
I'm not able to download date using this code. This was possible a couple of months ago. importrefinitiv.data as rd rd.open_session() st="JPUSTOSR21M=TTKL" dt1="2025-07-06" dt2="2025-07-09" start_dt = dt1 +"T00:00:00" end_dt = dt2 +"T20:59:59" df =rd.get_history(st, fields=['BID','ASK'], interval="tick", start =start_dt,…
-
Are there limits for news stories history in Refinitiv?
How far back in time is it possible to get news stories with an API using Python in Refinitiv workspace? Even though I set a 3 month period, the retrieved news barely cover one month? Do I need to change anything in the settings? I use this Python function: import_news = ld.news.get_headlines('ECB AND Language:LEN AND…