Research API Metadata

Hi! I am currently utilizing the Refinitiv Research API for a project and have encountered difficulty in retrieving properties by using metadata for certain entities. As of now, I can successfully fetch properties for "GOV_CORP_INSTRUMENTS" and "Organisations." However, when attempting to access properties for other entities, I encounter an error.

What might be a problem? Thank you in advance!

response = search.metadata.Definition(
view = search.Views.ORGANISATIONS
).get_data()
response.data.df


response = search.metadata.Definition(
view = search.Views.DealsMergersAndAcquisitions
).get_data()
response.data.df

Best Answer

  • Hi @vitali

    The View is defined as: View.DEALS_MERGERS_AND_ACQUISITIONS. If you are in Jupyter, you can access via intellisense (Pressing Tab)

    1708013025181.png

Answers