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
1 0 0 0

API to pull operating metrics

How can I use the API to pull operating metrics for all constituents while specifying the as of date and period? For example, TR.TotalRevenue, for last 12 months (or 4 quarters), as of 4/30/2022

eikon-data-apirefinitiv-dataplatform-eikonworkspace#technologyapirefinitiv-data-libraries
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.

1 Answer

· Write an Answer
Upvotes
Accepted
10.3k 18 6 9

@Mayeen.Neri Thanks for your question, so you can use the Refinitiv Data Libraries (Python,.NET,TypeScript) to do this easily:

import refinitiv.data as rd
rd.open_session()
rd.get_data(
    universe=['0#.FTSE'],
    fields=['TR.F.TotRevenue(Period=FY0).date','TR.F.TotRevenue(Period=FY0)'],
    parameters = {'SDate': '2022-04-30'}
)

1695724873827.png

I hope this can help.



1695724873827.png (106.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.

Where can I go to search available fields for rd libary? I don't see TR.F.TotRevenue in DIB on Eikon desktop

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.