-
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…
-
Not being able to get the desired response from the CommoditySearch request.
We are not being able to get the response from the following request as provided in the screenshot. Can you please assist in creating the correct request to get the correct list of the recs for the CommoditySearch request? As directed, we tried requesting the list of 'NGMM' RICs but the response is empty.
-
Search Query for Refinitiv Data Platform
I'm working with the Refinitiv Data Platform Library for TypeScript and trying to implement a symbol search using Search.definition. In the documentation it provides the following example: const definition = Search.Definition({ query: "IBM Bonds", select:…
-
facing issue in DSS API search for UsMunicipalSearch
HI i am facing discrepancy in DSS API , The securities with CUSIP 649903YA3, 64990CJB8 are Munis. when i am trying to search the securities with CUSIP 649903YA3, 64990CJB8 in DSS GUI the instrument is showing as Munis. Please refer the attached snap from DSS UI. But in the API response I see "InstrumentType":…
-
Guide to reifnitiv.data search functions
Is there a comprehensive guide which shows how to build search functions in python. For example, I need to program a loan search function in the form below but with other search parameters and output. How do I identify how to add other search parameters and which output fields are available: df = rd.discovery.search( view…