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

Hello @Ginger J. Xing

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query?


If so please can you click the 'Accept' text next to the appropriate reply? This will guide all community members who have a similar 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
79.2k 251 52 74

@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.