I need ISIN codes and I am using Refinitiv Workspace. How can I find them?
Hello @elena.cardino
There are various ways to get the ISIN code from the RIC code.
Firstly, you can use the Eikon Data API to get the ISIN of given RIC codes.
Example from Eikon_Data_API__Symbology.ipynb file in the CodeBook App:
import refinitiv.data.eikon as ekek.set_app_key('DEFAULT_CODE_BOOK_APP_KEY')ek.get_symbology(['MSFT.O', 'GOOG.O', 'IBM.N'])
Result:
Or you can use the RD Library - Python to get the ISIN.
Example from Content__Symbology.ipynb example file in the CodeBook App:
import refinitiv.data as rdfrom refinitiv.data.content import symbol_conversionrd.open_session()response = symbol_conversion.Definition(symbols=["MSFT.O", "AAPL.O", "GOOG.O", "IBM.N"]).get_data()response.data.df