For example the ETF 'Xtrackers II ESG Global Agg Bond UCITS ETF' has the RIC XBAE.DE.
I want to get the following data(especially the field highlighted in Red) from the overview tab using the Eikon Python Library:
New posts are disabled while we improve the user experience.
You can browse the site, or for urgent issues, raise a query at MyAccount.
For example the ETF 'Xtrackers II ESG Global Agg Bond UCITS ETF' has the RIC XBAE.DE.
I want to get the following data(especially the field highlighted in Red) from the overview tab using the Eikon Python Library:
I don't see the possibility to do it via eikon api, there is a way to do it via funds endpoint.
request_definition = rd.delivery.endpoint_request.Definition( method=rd.delivery.endpoint_request.RequestMethod.POST, url='https://api.refinitiv.com/data/funds/v1/assets', body_parameters={ "properties": [ {"name": "Attributes", "filter":"INDEXREPLICATIONME"} ], "universe": { "symbols": ["XBAE.DE" ]}}) response = request_definition.get_data() response.data.raw