Extra fields in LSEG API for the ownership report.
Hi there,
I'm downloading ownership reports of companies via the Python API.
Using CodeCreator, I managed to create the following working code (Note, I'm using the newer python library LSEG):
import lseg.data as ld
rd.open_session()
df = ld.get_data(
universe = ['ASML.AS'],
fields = [
'TR.InvestorFullName',
'TR.SharesHeldValue'
]
)
display(df)
I'm searching for the field names that deliver me the Investor ID and the investor Parent (name and ID).
I can do this in the ownership summary, see screenshot.
In the right of this view you:
1. Can press on the settings button on the right, and select "Ultimate Parent Holdings", in which all investors are now grouped to the ultimate parent.
2. Press on the investor and see that you have a unique ID which you can open.
My question: Which fields do I need to add to this script to extract this data?
I would expect an answer for example: ID = TR.XXX and Parent is TR.YYY field.