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
3 3 3 5

In order to do an event-study I need ESG controversy related news articles, for a large number of companies over multiple years. What is the best way of extracting this information?

eikoneikon-data-apirefinitiv-dataplatform-eikonworkspaceworkspace-data-apinewsesgbulk-download
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.

@lis-tisem-eikon10

Hi,

Thank you for your participation in the forum.

Is the reply below satisfactory in answering your question?

If yes please click the 'Accept' text next to the reply. This will guide all community members who have a similar question.

Otherwise please post again offering further insight into your 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

1 Answer

· Write an Answer
Upvotes
Accepted
32.2k 40 11 20

Hello @lis-tisem-eikon10 ,

I think one of the aspects to keep in mind is that Eikon Data API news history depth is 15 months, please refer to Eikon Data API Usage and Limits Guideline.

If this is satisfactory for your use case, then the next step is to build a query that would reflect your requirement, for example:

ek.get_news_headlines(query = 'ESG', count = 50)

And run it iteratively, noting the timestamp of the last result, for example:

2021-09-21 21:45:25.817
...
2021-09-21 21:40:17.455

and making the next request starting at the last date retrieved by the current request, i.e.

ek.get_news_headlines(query = 'ESG', date_to='2021-09-21 21:40:17.455', count = 50)

Untill the set of the relevant news items within available news depth is exhausted.

If this does not address your organization's requirement, you can consider other product options. A good starting point should be to discuss your detailed requirements with your Refinitiv account team so that together you may arrive at the most suitable solution for your organization.

Potentially, news information can be obtained from Refinitiv Data Platform News, it is HTTP REST -enabled interface, and Refinitiv Machine Readable News History

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.