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 to get RIC code if we search through Investor Name from shareholder report eikon python API?

eikon-data-api#technologypython apirics
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.

1 Answer

· Write an Answer
Upvote
Accepted
14.4k 30 5 10

Hi @vishal.dedhia ,

Could you please clarify more about which RIC code you'd like to get?

The code below is using RD Library for Python to search with the investor name, but I'm not sure if this's what you're looking for.

import refinitiv.data as rd

rd.open_session()

rd.discovery.search(
    view = rd.discovery.Views.SEARCH_ALL,
    top = 10,
    filter = "InvestorFullName eq 'The Vanguard Group, Inc.'")

1685087369978.png


1685087369978.png (41.7 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.