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

Best Answer

  • SupDev1
    Answer ✓

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

Answers

  • 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