How to retrieve data about firms' major customers using the Eikon Python API?

I would need to get data about major customers of multiple firms. Is it possible via Python API? Would be also helpful if availability of major customers data can be used as a screener parameter.

I only found from the data item browser a data field of TR.PECompanyCustomers but I assume that is not correct one.

Here is an example of what kind of data I mean:

image

Best Answer

  • The closest thing we would have available is External Business Revenue -

    rev, err = ek.get_data("SANM.O", [{'TR.BGS.BusExternalRevenue':{'params':{'Scale': 6, 'Curn': 'USD'},}}])
    rev.rename(index={0:'IMS',1:'CPS',2:'Segment Total',3:'Intersegment revenue',4:'Consolidated Total'})

    image

Answers