New posts are disabled while we improve the user experience.

You can browse the site, or for urgent issues, raise a query at MyAccount.

question

Upvotes
Accepted
20 0 1 4

How can we get the Key Attributes data from the Overview tab for a given RIC using the Eikon Data API?

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:

1687517372775.png

refinitiv-dataplatform-eikon#contentpython apidatastream-api
1687517372775.png (157.5 KiB)
icon clock
10 |1500

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

Upvote
Accepted
1.5k 5 3 7

Hi @siddharth.marya

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

1687520060267.png



1687520060267.png (17.8 KiB)
icon clock
10 |1500

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

Upvotes
20 0 1 4
icon clock
10 |1500

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

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

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