-
Client is facing the issue while running these code
I am always encountering a timeout error when running this code: # Define the start and end dates (go two years by two years) start_date = '2025-01-01' end_date = '2025-06-30' # Generate a list of dates between the start and end dates date_range = pd.date_range(start=start_date, end=end_date) # Convert to a list of strings…
-
How do I can get full RIC list from Reuters?
Hi, I'm currently working on my dissertation and need to verify whether the RIC codes I extracted match the official RICs used by Reuters. I’ve heard that this can be done using the Search API, but I’m not sure how to access it. Is there also an Excel file or database available that contains the full list of RICs from…
-
Workspace API python:Retrieve EUR-denominated French government bonds
Our client is currently working on the government bond curve for the European region. However, using the method below, He is unable to retrieve EUR-denominated French government bonds (while major countries such as Germany and Belgium are returned correctly). If you happen to know a way to obtain them, I would greatly…
-
How to determien Peer Groups on own criteria
Hi Refinitiv Developer Community, I am working with a list of ~450 companies (primarily listed firms) and would like to retrieve, for each company, a list of peer companies — ideally 5 to 10 — using the Refinitiv Eikon or Workspace Python API. In the Workspace platform, I know the “Peers” tab in the GUI and the PEERS()…
-
Refinitiv python API: How to build dynamic queries for credit curve selection by python?
I'd like to clarify my use case further and seek advice on building a dynamic and parameterized search using Python. My objective is to automate DCF discount rate derivation based on the issuer’s profile. Specifically, I want to: 1. Filter for credit curves based on: • Credit rating (e.g., “BBB”) • Currency (e.g., “USD”) •…
-
How to match PERMNOs (from CRSP) to RICs
Hi, I have a list of PERMNOs (from CRSP) and I’d like to know if there’s an easy way to find the corresponding RICs for these identifiers. My understanding is that each PERMNO should map to one unique RIC. For example, I have PERMNOs 10104 and 10107 — how can I match these companies with their respective RICs? Thank you!
-
Facing issue in Refinitiv Futures API
Hi Team, We use user 9039365 to generate the token through the API endpoint - https://selectapi.datascope.refinitiv.com/RestApi/v1/Authentication/RequestToken API Response - Token generated successfully. We use the token in the API Endpoint for Data Retrieval -…
-
How can I get a list of RICs/Companies that have earnings announcements as of a particular date?
How can I get a list of RICs/Companies that have earnings announcements as of a particular date using Eikon API / RDP API? Are there other APIs where this is available?
-
How to get all the Rics of a sector (ex. consumer discretionary) and then calculate with its numbers
import pandas as pd # Example test data for 5 stocks in the Consumer Discretionary sector df = pd.DataFrame({ "Instrument": ["A", "B", "C", "D", "E"], "TR.TotalNetIncome": [100, 200, 150, -50, 300], # Net income "TR.AverageTotalEquity": [1000, 2000, 1200, 500, 2500] # Equity }) # Calculate ROE (Return on Equity = Net…
-
HTTP 303 - Forbidden in Refinitiv Data Library for .Net
We are getting a 303 Forbidden error whenever using the Search() for Isins. It was working nicely as of yesterday. Is this an administrative problem ? Also the example for dot net Search in the package gives me the same error. This is utterly urgent since we need to move to Workspace as of June 30th. Could this be related…
-
Clarification Request on LSEG API vessel information
I have been reviewing the documentation titled LSEG_API_VESSEL_INFO.pdf in shipping APP-tool, and I came across a section that I would appreciate some clarification on. Specifically, on page 9, the example code related to the ld.discovery.search function appears to be incomplete—approximately half of the code snippet is…
-
Hi, I downloaded the field "RCSCoveredBondGenealogy" and it is populated by codes, such as "A:3X\\A:
Sample instrument: DE000A1MLRP0 I downloaded the field "RCSCoveredBondGenealogy" and it is populated by codes, such as "A:3X\\A:NW". How do I interpret those field? Is there a glossary or a guide to decrypt them? this is my query: response = search.Definition(view = search.Views.GOV_CORP_INSTRUMENTS,top = 10000,filter =…
-
Issue Retrieving ODAX via Symbology API – FDAX Works, ODAX Times Out
Hello! I'm working with the LSEG Symbology API and running into an issue when trying to resolve the ODAX instrument using the ExchangeTicker identifier type. The same approach works fine for FDAX, but with ODAX, the request times out. Here's a simplified version of the request body I'm using: var requestBody = new { from =…
-
Retrieving Constituent RICs under a Chain RIC
Hello Team, Is there any way to retrieve constituent RICs under a particular Chain RIC without using a regular DSS template like EOD, Intraday, Composite etc., Like how we can use the search function on DSS Web GUI to find the Constituent RICs under a Chain RIC. I have tried to search for the API on API Reference Tree and…
-
Document Search API supports facets for Contributor and Industry
Hi Fellow Devs Does document search api(http://api.rkd.refinitiv.com/api/DocSearch/DocSearch.svc/REST/DocSearch_1/FtsDocSearch_1) support facets? We want to show contributors and industries which are part of the result set. We are using http://api.rkd.refinitiv.com/api/RefInfo/RefInfo.svc/REST/RefInfo_1/GetInfo_1 api to…