Download corporate event data from Refinitiv workspace using python API

Hi Team,

1. I am working with refintiv Workspace and I would like to download data via an api access. Would you mind letting me know where I can find a list of all the possible data fields that I can access via api? In the example on the homepage there is only a limited number of fields, such as e.g., “TR.Revenue”.

2. And more specifically I would like to download via api access the corporate event data (Date, Time, Type, RIC, Event Name) shown in the print screen attached to the email.corporate-actions-min.png


Thanks!

Best Answer

  • Jirapongse
    Jirapongse admin
    Answer ✓

    @ns3481

    Thank you for reaching out to us.

    You can use the Data Item Browser to list and search fields.

    1691119172977.png

    You can try the following code with Eikon Data API.

    df, err = ek.get_data(["TSLA.O"],
                          ["TR.EventTitle.Date",
                           "TR.EventTitle",
                           "TR.EventType"],
                          {'SDate':'2019-01-01','EDate':'2023-08-01'})
    df

    1691119658948.png


Answers