How can I find ISIN codes on Refinitiv Workspace?

I need ISIN codes and I am using Refinitiv Workspace. How can I find them?

Tagged:

Best Answer

  • wasin.w
    wasin.w admin
    Answer ✓

    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 ek


    ek.set_app_key('DEFAULT_CODE_BOOK_APP_KEY')


    ek.get_symbology(['MSFT.O', 'GOOG.O', 'IBM.N'])

    Result:

    isin-2.png

    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 rd
    from refinitiv.data.content import symbol_conversion

    rd.open_session()

    response = symbol_conversion.Definition(symbols=["MSFT.O", "AAPL.O", "GOOG.O", "IBM.N"]).get_data()
    response.data.df

    Result:

    isin-3.png