RIC Search tool API

https://developers.refinitiv.com/en/tools-catalog/ric-search 网站能不能用API提取RIC? 如果可以是否有具体方法可以参考,特别感谢!

Tagged:

Best Answer

  • raksina.samasiri
    Answer ✓

    Hi @yu.yang ,

    The search API can be used (/discovery/search/v1/)

    For example, the request body of an API is below, searching for RIC and the Document title of the query IBM Bonds from the Instrument view.

    1659946060194.png


    Search function in the RD Library can also be used

    You may check the RD Library - quick start guide for more detail, an example code is also available in Codebook app inside Eikon Desktop/ Refinitiv Workspace

    import refinitiv.data as rd
    from refinitiv.data.content import search

    rd.open_session()

    response = search.Definition(
    view = search.SearchViews.INSTRUMENTS,
    query = 'IBM Bonds',
    top=100,
    select = 'RIC,DocumentTitle').get_data()
    response.data.df

    1659946144292.png

Answers