Hello,
Is it possible to pull the field Descriptions when using the EIKON data API? I am using the ek.get_data() function.
Thank you.
Best,
David
Hi @dpi.eco
I think that you may try a TR. field name with the suffix ".description" to get the same result as in the DIB tool.
df, err = ek.get_data('VOD.L',['TR.PriceClose','TR.PriceClose.description'])df
@dpi.eco The Eikon Data API does not deliver metadata such as field descriptions via API. The best way to discover information about fields (and their parameters) is by using the Data Item Browser app (type DIB into eikon search bar).
I hope this can help.
I stand corrected - please look at Marcin's answer below!
@marcin.bunkowski that is exactly what I was looking for! Thank you very much!