-
Discovery Symbology API-Datsatream macro economic identifiers
One of user is asking, The Discovery Symbology API (image below) is designed precisely to map between different identifiers (RIC, ISIN, CUSIP, PermID, etc.) and supports an internal identifier called DatastreamId among the “LSEG specific and heritage identifiers.” So this works for Equities / ETF and similar. Please…
-
Symbol conversion using lseg.data
I wanted to convert between security identifiers depending on the identifier type I may have. I have checked the symbol conversion module and the fundamental reference module, both under content layer. There are some differences in their behaviors. Below is an example based on CUSIP to ISIN/RIC mapping. Symbol Conversion…
-
Get RIC from CUSIP
Hello team, I am referering to the standard documentation to find the RIC sysmbols for the following cusips and but this is giving nothing in return, Can u please guide on the same? response = symbol_conversion.Definition(…
-
Resolving a transaction-only "TOPASId" to ISIN/RIC when the instrument never appears in PAL holdings
Environment LSEG Data Library for Python (lseg.data / formerly refinitiv.data) Portfolio Analytics (PAL) via the portfolio-analytics and o-management endpoints Python 3.11, running in CodeBook What I'm building I reconstruct a portfolio's closed positions (fully sold or redeemed in the past) from PAL transaction history,…
-
Symbol conversion function without best match parameters
hi i'm wondering why new methods exposed under Lseg library (content 'symbol_convesrtion' and discovery side 'convert_symbols') there is no best_match option as were proposed by eikon function (get_symbology).
-
Refinitiv REST API end-point
I'm using Refinitiv REST API end-point to verify Single Stock Futures RICs. The following Equity Future Spread RICs are valid when using Refinitiv Workspace but are not available when using REST API end-point, please investigate why is it. Sample list of RICs: LESK6-M6:KE HDEK6-M6:KE SMEK6-N6:KE DWIK6-M6:KE PNTK6-M6:KE…
-
LSEG Support: EikonGetSymbology Fails to Resolve Bare-Ticker RICs
LSEG Support: EikonGetSymbology Fails to Resolve Bare-Ticker RICs Reproducible notebook for the LSEG Data Quality team. Uses the LSEG Data Library for Python (lseg-data). Each issue section is preceded by a code cell that reproduces it. Date: March 2026 Products affected: Eikon Data API — EikonGetSymbology endpoint…
-
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
-
Issues with Symbology API lookup calls when data set exceeds around 100-200 items
Case 15682386 "We've recently added ~500 new cusips into our universe which we use to fetch market data. It now seems like the /discovery/symbology/v1/lookup call to map cusips to RIC's is now timing out at around 100-200 cusips. Is there a limit on how many cusips we can query for, and if so what is that limit?"
-
Get all related RICs given an ISIN using LSEG module
I need to get all available RICs possible for a certain ISIN through python via lseg-data library as I need to get all contributors available. Before, I can do this using Eikon library as shown below. data = ek.get_symbology("GB00BFWFPP71", to_symbol_type='RIC', best_match=False) Tried, using symbology and…
-
Download10-K filings by using workspace.
Hi! I’ve been working on a Python script to download some 10-K filings by using workspace, but this error message appeared: [DiscoverySearch] Sending body_parameters: {'json': {'View': 'equityQuote', 'Query': 'AAPL.OQ', 'Top': 3}} [DiscoverySearch] Library recorded body_parameters: {'json': {'View': 'equityQuote', 'Query':…
-
Is it possible, from the ISIN code, to get the primary RIC code ?
I use a Python code to export into Excel some Data from your StarMine Model. I use the ISIN code as identifier. Unfortunately, there is an issue with Ferrovial (ISIN = NL0015001FS8). I think the right RIC to use is FER.MC. Is it possible, from the ISIN code, to get the primary RIC code ? I guess it may help me on this…
-
From Company Names to RICs
Hello, I know that there have been previous questions on the topic, but the answers did not solve the issue for me. I have a vector of company names from the USPTO. company_names = df["disambig_assignee_organization"].dropna().tolist() print(company_names[:10]) Examples of firm names: 'International Business Machines…
-
Missing ISIN/CUSIP/SEDOL from ld.get_data even though identifiers appear in Workspace (example: VSSL
Hi, I’m using the LSEG Data Library for Python to retrieve instrument identifiers (ISIN, CUSIP, SEDOL, etc.) from RICs as part of a global equity mapping pipeline. For most instruments, this works well. However, for a subset of equities the API does not return all identifiers, even though they are clearly visible in…
-
Symbology: SEDOL → RIC returns null in Python, but Workspace finds a RIC (ETF holdings use SEDOL)
I’m building an ETF holdings pipeline. Provider files list constituents primarily by SEDOL. I need to resolve these SEDOLs to pricing RICs (and also capture ISIN/CUSIP). I’m using the Python Eikon/Workspace API. What works / what doesn’t In Workspace (desktop), if I search by SEDOL I can see the security and its RIC. In…