question

Upvotes
Accepted
1 1 2 8

RIC Search tool API

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

apiricsisin
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 @yu.yang

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
14.2k 30 5 10

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


1659946060194.png (209.3 KiB)
1659946144292.png (46.3 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.

What is the authorization header schema for the api call? Do I just use my Eikon app key?

@scott.curry

If you use the Refinitiv Data Libary for Python, you need to specify the Eikon App Key in the configuration file and then the library will take care of it.


Please refer to the RD Library Python examples on GitHub.

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.