How i can find de RIC code for a company with the private company name with a python script , eg ILI

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

Best Answer

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

Answers