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 4

Eikon pulling RIC entity hierarchy through Python API

Is there a way to pull the tree/hierarchy of subsidiaries associated with a given RIC parent via the Eikon Python API, and if so what fields should be used?

eikoneikon-data-apipythonrefinitiv-dataplatform-eikonworkspaceworkspace-data-apientity
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
Upvotes
Accepted
39.4k 77 11 27

Using Screener with public & private companies universe you can retrieve all the subsidiaries of an organization. Here's an example retrieving all subsidiaries of Ford Motor Co (organization PermID 4295903068).

ek.get_data('SCREEN(U(IN(Equity(active,public,private,primary))),'
                      'Contains(TR.UltimateParentId,"4295903068"))',
                     ['TR.CommonName','TR.ImmediateParentId'])
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.