Retrieving company data items from LEI code

Hi,

From a list of LEI codes, how can I get the data items for those companies with a workspace licence using worksphace APIs?


Thanks.

Best Answer

  • Hi @asli.sahin

    For that purpose you can use refinitiv.data library and convert the LEI codes to RIC codes which can be later on used as standard inputs in api.

    import refinitiv.data as rd
    rd.open_session()

    rd.get_data("213800TB53ELEUKM7Q61@LEI","TR.RIC")

Answers