Sustainabilty-Linked bond deals via python API

Hi all,

I am searching for a way to request sustainability-linked bonds and loans via python API.

I tried refinitiv.data package but could not find a fitting function or filter to extract this specific type of products. Is there an actual way to do this?


Regards

Fritz


Best Answer

  • Hi @fritz.flothkoetter

    You can try for bonds:

    rd.discovery.search(
    view = rd.discovery.Views.GOV_CORP_INSTRUMENTS,
    top = 10000,
    filter = "RCSFIClassificationCodes(CodeDescription eq 'Sustainability Linked Bond')",
    select = "RIC,RCSFIClassificationCodes",
    )

    and for loans:

    rd.discovery.search(
    view = rd.discovery.Views.LOAN_INSTRUMENTS,
    top = 10000,
    filter = "MarketSegmentDescription eq 'Sustainability Linked Loan'",
    )

Answers