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
27 3 2 2

How can I get Financial Data for Private Companies using Eikon API?

I was given this query below on how to get some financial data for Private Companies using Excel, but I would like to do it using Eikon API (Python). Can you please tell me how to do it? Sample query:

=TR("4295869214@OrgPermID", "TR.F.EBITDA", "period=FY0")

eikoneikon-data-apipythonrefinitiv-dataplatform-eikonworkspaceworkspace-data-apifinancial-statements
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.

Upvotes
Accepted
27 3 2 2

Thanks for your help, Nick. It worked. After some research, I enhanced your formula to add the date and historical values. Here is it in case someone also needs the same:

df,err = ek.get_data("4295869214", ['TR.PCEBITDA.date', 'TR.PCEBITDA(Period=FY0)'], parameters={"Frq": "Y", "SDate": "2008-01-01", "EDate": "2018-01-01"})

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.

Upvotes
17k 80 39 63

Hi @maria.vieira,

Try this:

df,err = ek.get_data("4295869214", ['TR.PCEBITDA(Period=FY0)'])
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.