Get all bonds from one issuer

Hi,

is it possible to get all the bonds from one issuer please? I found out that for getting Issuer name from ISIN this code is working `ek.get_data(['XS2552369469'],['TR.FIIssuerName'])` but I cannot manage to make it other way around. Any help will be appreciated! Thanks!

Best Answer

  • Jirapongse
    Answer ✓

    @Student-10

    Thank you for reaching out to us.

    You can use the search API in Refinitiv Data Library to get all instruments from one issuer. For example:

    df = rd.discovery.search(
        view=rd.discovery.Views.FIXED_INCOME_INSTRUMENTS,
        filter="IssuerCommonName eq 'Redeia Corporacion SA'",
        top=1000,
        select="RIC,ISIN,IssuerCommonName,DocumentTitle"
    )
    df

    The examples are available on GitHub.

Answers