question

Upvotes
Accepted
17 5 5 11

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!

#contentrefinitiv-data-platformpython apicorporate-events
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.

Hi @ns3481 ,

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

1 Answer

· Write an Answer
Upvote
Accepted
79.4k 253 52 74

@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



1691119172977.png (60.9 KiB)
1691119658948.png (29.6 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.

Thanks you very much @Jirapongse, this was very helpful.

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.