-
Issue with LSEG Python Library News API Request Limit
An issue has been encountered while using the LSEG Python library to retrieve news data. Although the expected daily request limit is 10,000, the number of successful requests appears to be limited to approximately 2,000 to 3,000 per day. def refinitiv_get_news_body(row): if row['status'] == "COMPLETED": #print("body found…
-
News in BRIEF
I have a question regarding the news articles I put into my BRIEF. Is there a simple or code-based way to copy all the news articles into a text file. Currently, I am opening each one and copying into a text file for my purposes. Thank you in advance.
-
Can anyone help me in downloading news articles for the past few years through an API
-
Error when retrieving NEWS on WS API
Hi Team, using the code: from __future__ import annotations import os from datetime import timedelta from dotenv import load_dotenv import lseg.data as ld def main() -> int: load_dotenv() required_env = ["LSEG_APP_KEY", "LSEG_USERNAME", "LSEG_PASSWORD"] missing = [name for name in required_env if not os.getenv(name)] if…
-
Get media data
I would like to download media data (please see screenshot) in LESG workplace with both titles and actual articles, but couldn't find where to download. The Save button here seems to only save the search. Manually copying and pasting is not realistic for the case since we need a large amount of data for analysis later. Is…
-
Is it possible to extract publication of an earnings-related news release or headline in NEWS app?
Client inquired whether there is an available Excel field or function (via TR or RDP) that updates immediately upon publication of an earnings-related news release or headline. Ideally, they are looking for data points such as: Latest headline timestamp Earnings-related news indicators or categories Latest company news…
-
API to retrieve headlines/articles from workspace
Which API lets me programmatically retrieve Reuters Workspace news headlines and article text for the last 24 hours, filtered by agriculture, commodities, energy, grains, oilseeds, weather, macro, and policy topics?
-
Using python API to filter news for “government bond yield
headlines_response = news.headlines.Definition( query = "fixed income AND euro zone AND LEN", date_from = "2026-04-13T14:00:00", date_to = "2026-04-14T08:15:00", count = 100 ).get_data() Is there a way to filter for “government bond yield”? as the filter I am currently using, fixed income, is returning some news article…
-
Hello! I am currently trying to retrieve news using the Python API.
Hello! I am currently trying to retrieve news using the Python API. However, I cannot filter only english articles: the code I am using rn is the following: headlines_response = news.headlines.Definition( query = "fixed income AND euro zone AND LEN:EN", date_from = "2026-04-13T14:00:00", date_to = "2026-04-14T08:15:00",…
-
Can a user have the ability to pull tagged news headlines by ticker, sector, or topic code?
A user of a LSEG Data Library have the ability to pull tagged news headlines by ticker, sector, or topic code with the correct time indexing? In addition, can we reference a Portfolio or Watchlist to retrieve Headlines? Regards, Dan
-
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?
-
getting news topic name
Hello, I want to get the topic name(such as TECH) through the news storyid (I retrieved this by get_news_headlines ). Should I using the topic_code field? Is there any way for me to get the topic list for a certain category of news? And is there a full list of topic for all news? Thank you!
-
lseg-data : news metadata & authentication cache
hello, three questions : is it possible to access /data/news/v1/metadata/{QCODE} API with python lseg-data library ? is it possible to cache authentication token (in a file ?) in order to avoid extra authentications is symbology available in lseg-data ? I can not find it regards
-
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()…
-
Do I have News API included in my subscription? if so where can I get the API key from?
Do I have News API included in my subscription? if so, where can I get the API key from?