-
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?
-
Advanced filling
I am experiencing an issue with the Advanced Filings function in LSEG Workspace. I have added all the companies into my Monitor, but when I try to search or filter filings within the Monitor, the system shows “no data was return.” I would like to confirm whether this is due to a missing step on my side or if it may be a…
-
Codebook Workspace API - News help!
Hi, i'm trying to pull news headlines via the workspace API. rd.news.get_headlines("LSEG, MSFT.O AND Language:LEN", count=50) this code works for pulling headlines, but how do i add another filter for "content type" like in the APP NEWS 2.0? i.e. web news, research, transcripts, filings etc. I'd like to filter my query. I…
-
I understand that this entity is not available in your database. Is there a field in the “get_data
I understand that this entity is not available in your database. Is there a field in the “get_data” Python command to say whether data for an entity (like 5001448514) is available or not, so that I avoid getting an error if I try to download them?
-
I wanted to understand how can I run the Refinitiv API on AWS Sagemaker using a Python code?
Also, do I need to login to Workspace in order to make this code run? So I will have to log into workspace as well as open session on the sagemaker app for this to run? Is there no way to directly run this on sagemaker without logging into my workspace on my desktop?
-
Refinitiv.Data.Content.News.Story has stopped working
This following code in C# was working fine to fetch news release stories up until 2 days ago. headlineID = "nGNX6zsGB6"; string storyID = "urn:newsml:reuters.com:" + DateTime.Now.ToString("yyyyMMdd") + ":" + headlineID + ":1"; var story = Story.Definition(storyID).GetData(); story.IsSuccess used to return True, and…
-
GET CONSTITUENTS OF AN INDEX USING PYTHON CODE
How do I get the constituents of nifty 50 which is depicted by INNSE50 or .NSEI , I can see that on the datastream navigator but i want to extract via python code. I am trying to use this, df, err = ek.get_data( instruments = ['INNSE50'], fields = ['TR.IndexConstituentRIC', 'TR.IndexConstituentName'], parameters = {…
-
Interest Rate Swap Calculator via API vs Workspace
I am trying to replicate the function SWPR I can use directly on Workspace using the lseg-data python library. Unfortunately I have not been able to match the results and I ask you help in this sense. At this time I am interested to the metrics resulting in the "RISK" tab highlighted, specifically DV01 and Modified…
-
How in Workspace get same result with IPA service as with Excel function RPD.DateCalcPeriod?
Hello, how we can get the same result with Instrument Pricing Analytics Delivery Platform (IPA) as with the Excel function RDP.DateCalcPeriod? In Excel we get the result 24.06.2025: But in .NET application using IPA service we get nothing. We use the following JSON request: Do you have the technical description for…
-
Historical Leavers and Joiners of .SPX
I need a list of Leavers and Joiners at the beginning let say at 01-01-1990 and then have the in and out for the following years in Phyton API. So this need to be done in 2 times : First having the list at special date let’s say 01/01/1990 Second the IN and Out the following years. For sample RIC : .GDAXI To have a…
-
IPA Financial Contracts: Option Contracts - FX
Hi team, Is it possible to have a sample code using this IPA Financial Contract for option contracts? developers.lseg.com/en/api-catalog/refinitiv-data-platform/refinitiv-data-platform-apis/documentation/manuals-and-guides/ipa-financial-contracts/ipa-financial-contracts-option-contracts-fx#InstrumentDefinition
-
How to return result of "TR.F.OriginalAnnouncementDate" in local timezone.
The return for "TR.F.OriginalAnnouncementDate" shows in UTC timezone. eg. 2025-05-08T04:55:00Z Is it possible to return in Japan logal time (GMT+8) ? <script> import lseg.data as ld ld.open_session() df = ld.get_data(universe = ['7203.T'], fields = ['TR.F.OriginalAnnouncementDate(Period=FY0,Frq=FY,SDate=1D)']) display(df)…
-
Is there a code where I can convert a list of RICs into its US RIC counterpart?
Hello team, for example RIC ABX.TO is listed in Toronto Exchange the RIC which the Exchange is United States is RIC B. I have managed to create this code: import refinitiv.data as rd rd.open_session() rd.discovery.search( view = rd.discovery.Views.EQUITY_QUOTES, top = 10, filter = "(AssetState ne 'DC' and…
-
ADVERS app- broken not showing data
Research search function not working. Says No data available with no filters.- ADVRES I am trying to pull broker reports upon the release of the FY24 results, for Swisscom
-
FX cross in Turn Dates in API
Hi team, Specialist here from Customer Support. Related to this q&a Is there a way to retrieve Turn Dates for a specific currency pair directly on Python ? — LSEG Developer Community there is a specific parameter if you want to calculate CCy1 or CCy2 which is then discussed in this guide:…