question

Upvotes
Accepted
1 1 1 1

How can I find ISIN codes on Refinitiv Workspace?

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

workspaceisin
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.

Hi @elena.cardino ,

Thank you for your participation in the forum.

Is the reply below satisfactory in resolving your query?

If yes please click the 'Accept' text next to the most appropriate reply. This will guide all community members who have a similar question.

Otherwise please post again offering further insight into your question.

Thanks,

AHS

Hello @elena.cardino ,

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
24.7k 54 17 14

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


isin-2.png (48.1 KiB)
isin-3.png (63.7 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.

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.