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

.net api how to get list of available fields?

Just starting with the .net api, able to query say BID or ASK via the realtime:

Services.Realtime.Request("AMZN.O", "BID", DataReceived);

How would I get market cap for the above?

In general, is there someplace I can find out all the possible fieldnames (like bid and ask) that are available?

- John

eikoneikon-data-apipythonrefinitiv-dataplatform-eikonworkspaceworkspace-data-api
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.

Hello @j_runchey,

Thank you for your participation in the forum.

Is one of the replies below satisfactory in resolving your query?

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

Otherwise, please post again offering further insight into your question.

Thanks,

-AHS

Upvotes
Accepted
39.4k 77 11 27

@j_runchey
The API you're using is only capable of retrieving data from real-time datafeed and from timeseries service. It cannot retrieve fundamental & reference data. In other words none of the fields that start with TR. can be retrieved using this API.
The list of fields available through the interface you're using varies by RIC. For a given RIC it can be viewed using Quote app in Eikon. Type in the RIC into the Quote app, then right-click within the app and from the right-click menu select Template - Display All Fields. This will give you a view of the real-time data record as a vector of field name/value pairs.
If you need to retrieve TR. fields into a .NET application you can use DEX2 library of Eikon COM APIs or the community owned .NET implementation of Eikon Data APIs.

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.

Upvotes
4.6k 26 7 22

@j_runchey you can either using the Data Item Browser app (type ```AMZN.O DIB``` into the command bar) on Eikon or the Function Builder on Eikon Excel.


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.

Upvotes
3 0 1 2

But then how do I translate from that to what to use in my C# call? If I try:

Services.Realtime.Request("AMZN.O", "TR.CompanyMarketCap", DataReceived);

I do not get the market cap back.... ?

Thanks!

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.