Upgrade from Eikon -> Workspace. Learn about programming differences.

For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
20 0 0 2

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#contentdatastream-apipython 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.

Hello @siddharth.marya

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query?


If so please can you click the 'Accept' text next to the appropriate reply? This will guide all community members who have a similar question.

Thanks,


AHS


Please be informed that a reply has been verified as correct in answering the question, and has been marked as such.

Thanks,
AHS

Upvote
Accepted
1.4k 5 3 6

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 0 2
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.