Hi i'm using the "Eikon 4 Desktop API" / C#I would like to know if there is way to request RICs/ISIN codes based on the company name ?for example : i send "Apple" and i would receive AAPL.O/US0378331005
@Telliom You can use the RSearch COM API to do this type of thing. Please check the sample code here https://developers.refinitiv.com/eikon-com/eikon-desktop-data-api/learning?content=806&type=learning_material_item (in C#) as well as the search example here: https://developers.refinitiv.com/eikon-com/eikon-desktop-data-api/downloads
I hope this can help.
Thanks Jason !
Alternatively if you use the .NET library implementing Eikon Data APIs, you can use
var data = eikon.GetData( "SCREEN(U(IN(Equity(active,public,primary))), Contains(TR.CommonName,\"Apple Inc\"))", {"TR.CommonName","TR.ISIN"} );