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

Filter list in discovery search function

Is there a filter list we can refer to when using discovery search function for what filters we can have for a particular query? thank you


#technologyfilter
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
80k 257 52 75

@Ginger J. Xing

Thanks for reaching out to us.

If you mean a list of properties available in a given view, you can use the metadata endpoint. For example, this one https://api.refinitiv.com/discovery/search/v1/metadata/views/SearchAll provides a list of properties in the SearchAll view.

1676025993907.png

However, if you are using the Refinitiv Data Library for Python, you can use the following code.

response = search.metadata.Definition(
    view = search.Views.SEARCH_ALL  # Required parameter
).get_data()


response.data.df

The output is:

1676026060398.png

I hope that this information is of help.


1676025993907.png (63.8 KiB)
1676026060398.png (33.7 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.

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.