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
54 2 4 11

Is there any possibility to retrieve all RICS related to the certain PERMID using Python Eikon Data Api?

I have a list of permids. I would like to retrieve all RICs connected to these permids.


Content team advised me to post a request here.

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

Upvote
Accepted
79.2k 251 52 74

@alekseenkova.marina

You can try this code:

df, err = ek.get_data(
instruments = ['55838323096','55850485015','21538366477'],
fields = ['TR.RIC'])
df

The output is:

1653290838401.png


1653290838401.png (14.2 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.

@Jirapongse thank you so much! Could you tell me, please, do I understand it correctly that this script retrieves MAIN RIC of the company (permid)?

@alekseenkova.marina

I tested with quote PermIDs, such as (https://permid.org/1-55850485015).

If I use an organization PermID (https://permid.org/1-4298007752), it will return a primary quote.

1653297867401.png

1653297867401.png (8.3 KiB)
Upvotes
7 1 1 5

I am also looking for an answer on this. But I need all RIC's in a specific period of 13F filing, how would I do that? Thanks.

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.