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")

Best Answer

  • maria.vieira
    Answer ✓

    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"})

Answers