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 0

How i can find de RIC code for a company with the private company name with a python script , eg ILIAD CAPITAL or Santander Asset Management SA SGIIC

How i can find de RIC code for a company with the company name with a python script , eg ILIAD CAPITAL or Santander Asset Management SA SGIIC

#productricscompany
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.

kindly assist on the ASAP

1 Answer

· Write an Answer
Upvotes
Accepted
10.6k 20 6 9

@omkar.hegde Thanks for you question. The best tool is to use the Refinitiv Data Library Search API service.

import refinitiv.data as rd
rd.open_session()
rd.discovery.search("Santander Asset Management SA SGIIC",
                   view = rd.discovery.Views.ORGANISATIONS,
                   select = "DTSubjectName,ExchangeName,RIC,IssueISIN,Gics,AssetState,BusinessEntity,PI,SearchAllCategoryv3,SearchAllCategoryv2,SearchAllCategory,TickerSymbol,CUSIP,CinCUSIP"
)

1706536733282.png

For private companies this is returning a PermID.

There are also some nice articles for you to read on the search API here and here. I hope this can help.


1706536733282.png (26.9 KiB)
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.