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

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

Best Answer

  • m.bunkowski
    Answer ✓

    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


Answers