Upgrade from Eikon -> Workspace. Learn about programming differences.

For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
19 1 1 1

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!

eikoneikon-data-apirefinitiv-dataplatform-eikon#technology#product#contentbondsissue
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
Accepted
83.1k 281 53 77

@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.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
19 1 1 1

Thank you very much for you reply!

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.