API to get RICs for a given ISIN (Euro/UK Fixed Income Bonds)

SaadQ
SaadQ Newcomer

Hi,

Im looking for an API that will return me RICs for given ISIN.

ISIN's will be for Euro/UK FI Bonds.

I reached out to LSEG helpdesk via email, and they provided me with the following sample python code.

I am interested in Dotnet version of the below python API. And looking at the site, looks like there is "LSEG Data Library for .Net".

So just to confirm, this .Net API is basically same as below python API, and will return RIC for a given ISIN? Is there a REST API for the same?

Please let me know. Thanks



import lseg.data as ldimport pandas as pdld.open_session()ld.discovery.search(              view = rd.discovery.Views.FIXED_INCOME_QUOTES,query = "91282CNX5",top = 100,select = "RIC") 

Answers