For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
25 0 0 0

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-apiworkspaceworkspace-data-apirefinitiv-dataplatform-eikonpythonfinancial-statements
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 5.0 MiB each and 10.0 MiB total.

Upvotes
Accepted
25 0 0 0

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 5.0 MiB each and 10.0 MiB total.

Upvotes
9.7k 49 38 60

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 5.0 MiB each and 10.0 MiB total.

Click below to post an Idea Post Idea