Is there an API for get data tables from Ric Search?

Is there an API, library or any function that can be used for get data tables, especially for economic indicators data from Ric Search Tool https://developers.refinitiv.com/en/tools-catalog/ric-search# in Python? If it is, can you give an example code?

Best Answer

  • raksina.samasiri
    Answer ✓

    Hi @Workspace.035 ,

    Have you tried the search function in RD library, an example code can be found here

    for example,

    import refinitiv.data as rd

    rd.open_session()

    rd.discovery.search(
    view = rd.discovery.Views.EQUITY_QUOTES,
    top = 10,
    filter = "( SearchAllCategoryv2 eq 'Equities' and (AvgVol5D gt 2000000 and ExchangeName xeq 'NYSE Consolidated'))",
    select = "RIC"
    )

    1678956426678.png

Answers