Upgrade from Eikon -> Workspace. Learn about programming differences.

For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
1 0 0 3

Eikon C# API / Request RICs


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

eikoneikon-data-apipythonrefinitiv-dataplatform-eikonworkspaceworkspace-data-api
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
Accepted
10.2k 18 6 9

@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.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
1 0 0 3

Thanks Jason !

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
39.4k 77 11 27

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"}
	);
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.