-
Discrepancy in News Metadata Retrieval Between RDP API and Workspace News Cloud Endpoint
When using RDP, I can request for news metadata using the following URL: https://api.refinitiv.com/data/news/v1/metadata?group=Geography and successfully pull down data. However, on the desktop using Workspace, if I request for the same data, I need to request it through the News Cloud endpoint using this…
-
RDP API - How to pull real time research reports via API?
User ID: Client wants to check if it's possible to pull the sell side research reports available in Workspace via API. He is able to see the following research reports via Workspace: But when he tries to pull the data, he encounters the following errors: Is he doing it incorrectly OR is this feature unavailable? Thanks
-
Manage Errors from resolving identifiers when using Lseg.data
hi regarding get_data function under LSEG.data library, why it's not behaving as the same function under eikon library, i mean: we can store error message in a separate variable (data,err=ek.get_data(Instrument2,"TR.RICS"), that it's not possible inder lseg.data with eikon library, even an identifier is not recognised, the…
-
lseg.data Python — Best practice for fetching London 00:00 baseline for OTC FX RICs
I'm building an FX Cross-Currency Basis (CIP) dashboard in CodeBook using the lseg.data Python library. The dashboard needs to anchor a "Net Change since London 00:00" calculation across ~50 OTC RICs. What's working I've found that lseg.data.content.historical_pricing.summaries.Definition() works beautifully for OTC FX…
-
Historical Implied Volatility Surface - EIKON API or RDP
Hello, I would like to pull IV timeseries as a function of moneyness using some Python API package like eikon or RDP.
-
Bond symbology continuity issue: RIC AT20YT=RR now maps to different asset (ISIN swap) and price
Hi, I hope you are doing well. To give you some background, we attempted to extract historical prices for the bond AT0000A1K9F1 initially converting it to RIC and searching for prices through both the Access Layer (using get_data()) and Content Layer (bond.Definition). I've attached the Content Layer output for…
-
How to download historical transaction values for each constituent of the S&P 500 composite?
I could not download the historical data of constituent companies of S&P 500. Here is my codes. import lseg.data as ld import pandas as pd ld.open_session(key) target_date = ["2023-03-01", '2023-03-10', '2023-03-20', '2023-03-31'] fields = ['TR.CommonName','TR.Turnover','TR.CompanyMarketCap] f =…
-
Issue with LSEG library on python (API). Getting an import Error
I have an issue with lseg library on python (API), The session is opened correctly but I get an importError ( Image attached). Have you met this issue before? Current lseg version : lseg_analytics-2.1.0b1 lseg_data-2.1.1.
-
How can i align data dates when pulling price data from python API?
Hi there, I am using the refinitiv python API to pull price data for stocks in a universe. Both the "date" and "calc date" fields yield slightly different dates for different stocks. My code (see below) should be pulling weekly dates for the past year starting from the most Friday. How can I ensure the dates returned are…
-
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()…