question

Upvotes
Accepted

How to get all RICS associated for each ISIN via API

For example I have this ISIN: IE00BF92LR56
I would like to know all the RICS which are having the same ISIN.
For example if I type this ISIN in the search bar in the UI, I can see:
5HED.L, 5HED.DE, 5HED.F, 5HEP.L, LP68492428, 5HED.D ....e.t.c

I'd like return via API the list of these RICs for each ISIN what I have

eikonapieikon-com-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 @Emmanuelle Jerome.Cadahing

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 reply. This will guide all community members who have a similar question. Otherwise please post again offering further insight into your 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

Upvotes
Accepted
4.1k 4 7 12

data=ek.get_symbology(['IE00BF92LR56'],from_symbol_type="ISIN",to_symbol_type="RIC",bestMatch=False)

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.

Upvotes
1 3 3 3

Please note that bestMatch has is actually best_match= so take this into account.


Code should look like this:

data=ek.get_symbology(['IE00BF92LR56'],from_symbol_type="ISIN",to_symbol_type="RIC",best_match=False)

data

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.