-
When I use get_history to retrieve some RIC data, sometimes this column and data misalignment proble
-
Downloading data
I have obtained the time-series I need in CODEBK, but I now need to downlaod them offline. Even though I specify the path and the code does not return erros, the pkl file is not available in the destination folder. Are there blocks to download or is there a different way to obtain them locally for some ad hoc analysis on…
-
ld.news.get_headlines
I was using python library to fetch news by ld.news.get_headlines(query='"Elon Musk" AND Language:LEN AND Source:"X"', count=10). However it returned LDError: Error code 400 | Query cannot return any result. Since I was trying to retrieve social media posts (explicitly X posts), is there a function to do it?
-
Refinitiv cloud API entitlement
Is there LSEG Data Platform / Refinitiv cloud API entitlement for server-side applications, independent of Workspace desktop session? and more specifically: Can my backend running outside Workspace authenticate and call LSEG data APIs without relying on the local desktop proxy on port 9000?
-
image truncated ?
hello I know RDP using raw python requests but I am a newbie with lseg-data on a specific onlinereports image ( tag%3Areuters__com%2C2026%3Anewsml_LYNXMPEM2H0FS%3A1___tag%3Areuters__com%2C2026%3Abinary_LYNXMPEM2H0FS-FILEDIMAGE ), grabbing it is truncated (345 ko) even if response.is_success is true, response.errors is []…
-
LSEG Data SDK news.get_headlines() returns ScopeError: Insufficient scope for /data/news/v1/headline
I am using the LSEG Data SDK in Python and can query other endpoints successfully, but the news headlines endpoint fails with a scope error. Minimal example: import lseg.data as ld ld.open_session() # using configured credentials df = ld.news.get_headlines( query=["LSEG.L"], count=10 ) print(df.head()) ld.close_session()…
-
Does the lseg-data Python library provide any way to download IPO Prospectus data?
We are interested in pulling prospectus data for companies that are about to go public. We found some of the data under Equity New Issues Deals through the Deal Screener app in Workspace. Is there any way to pull this data programmatically through the lseg-data Python library?
-
GOVSRCH saved template via Refinitv Python code
I have saved quite a few screens on GOVSRCH. The question is how this can be automated so that I get the same output as saved search. I looked into the below code mentioned earlier. However, I have 2 questions: How will it identify which saved search I am calling? Getting this error "No default session created yet. Please…
-
How to retrieve historic OPEN/HIGH/LOW/CLOSE adjusted for dividends and corporate actions in Python?
I am struggling to find the way to get in Python historic OPEN/HIGH/LOW/CLOSE or at least CLOSE for single stocks, adjusted for dividends and other corporate actions. Can you tell me what is the right field? I can’t find it in DIB.
-
Reuters Polls retrieval
hi! can one retrieve historical and current Reuters Polls (Economic Indicators, Central Banks, etc), ideally at the contributor level, from LSEG Data Library API, or any other API? I can see there is an old post for Eikon API but I wonder if this can be done with the new API or in any other way. thanks!…
-
Can Workspace API get story for news sources outside Reuters?
Hi, Can we call the story of a news in Workspace API where the news source is not from Reuters? For example, a user has a subscription to a News source for example FT. In Workspace News application, the FT news headline will be available and to view the full story, you need to click on a link, and it will redirect you to a…
-
Is Transcript available in the LSEG Data Library?
Hi, I would like to ask if the Earning Transcript is available for an API call or if there will be a plan to add it to the library if it's not? Regards, Dan Gabriel
-
Emissions Data via Workspace Codebook
I am downloading emissions-data with the Workspace Codebook app (see code below). I was wondering how to obtain a variable that indicates the year to which the emission data refers to. To my knowledge, ".date" gives me the reporting date, but I haven't found a variable on the year/fiscal year for which the data was…
-
Private Equity/VC data retrieval through API
Hello, I am trying to download the Private Equity/VC data through the API. import refinitiv.data as rd from refinitiv.data.discovery import Screener rd.open_session(name='platform.rdp', config_name="./refinitiv-data.config.json") screenr = "SCREEN(U(IN(Equity(private))), BETWEEN(TR.PEInvestRoundDate,20251225,20251231),…
-
.SPX not pullable in TR.PriceClose
Why leaving fields "" gives permission error ? Example: df_ss3 = ld.get_history( universe=[#"TMCU0", ".SPX" ], start="2017-01-01", end="2050-12-31", #change this in 2050 interval="weekly", count=None, fields="" # This pulls ALL available historical fields. Add specific fields like "BID" to get specific columns. Multiple…