I am trying get RIC for an ISIN(NL0000235190) from a specific exchange Frankfurt Stock Exchange(Exchange Code: FRA). How can I get this in python API? Result is AIRG.F, if I try Tr.PrimaryRic I get AIR.PA
get_symbology method of Eikon Python API can only return the primary RIC.Using send_json_request method you can retrieve all RICs corresponding to an ISIN, e.g.
ek.send_json_request('SymbologySearch', {'symbols': ['NL0000235190'], 'to': ['RIC'], 'from': 'ISIN', 'bestMatchOnly': False})