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
1 0 0 1

How can I use python to get issued bonds of an issuer for a given issuer's Ticker?

For example, I want to get the bonds issued by BABA, I can use Advanced Search app or debt structure of BABA to see the results on eikon workspace, but how can I get those bonds by python eikon api?


the results are just like the picture shows:

eikoneikon-data-apipythonworkspaceworkspace-data-api#technologypython apibondsformula-builderissue
eikon2.png (183.5 KiB)
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.

Hi @sunminghui ,

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query?
If so please can you click the 'Accept' text next to the appropriate reply? This will guide all community members who have a similar question.

Thanks,
AHS

@sunminghui

Hi,

Please be informed that a reply has been verified as correct in answering the question, and marked as such.

Thanks,

AHS

1 Answer

· Write an Answer
Upvote
Accepted
5k 16 2 7

Hi @sunminghui


You can use Search capabilities of Refinitiv Data Libraries for Python. The best way to get the query is to use the Advanced Search app itself. You can build the filters in the Advanced Search, the export the query as shown below:

screenshot-2023-11-14-at-122437.png

After you copy the code from the below output and run it in codebook or in your local IDE, it should provide the same output as you see in Advanced Search app.

screenshot-2023-11-14-at-122509.png

See the code below:

import refinitiv.data as rd
rd.open_session()

rd.discovery.search(
    view = rd.discovery.Views.GOV_CORP_INSTRUMENTS,
    top = 10,
    filter = "((DbType eq 'GOVT' or DbType eq 'CORP' or DbType eq 'AGNC' or DbType eq 'OMUN' or DbType eq 'OTHR') and IsActive eq true and ((IssuerOrgid eq '100906681')))",
    select = "RIC,EJVAssetID,DTSubjectName,BusinessEntity,PI,SearchAllCategoryv3,SearchAllCategoryv2,SearchAllCategory,DBSTicker,CouponRate,MaturityDate,IssueDate,ISIN,RCSCurrencyLeaf,RCSCountryLeaf,DbTypeDescription,InstrumentTypeDescription,RCSCouponTypeGenealogy,FaceIssuedUSD,RCSBondGradeLeaf,IssuerOrgid"
)


Hope this helps, let me know if any further questions.


Best regards,

Haykaz


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.

Hi Haykaz,


thank you for your kind answer! This is very useful to me, but I noticed that the code contains "IssuerOrgid eq '100906681'', which I guess the IssuerOrgid of BABA is 100906681, and I didn't know it before using AS. So how can I get the IssuerOrgid 100906681 by the Ticker BABA?

Hi @sunminghui ,


You can get the org id using the following code:

rd.get_data('BABA.K', fields  = 'TR.CDSRefEntOrgID')

Generally, to find the fields you can use Data Item Browser by typing DIB inside Workspace/Eikon.

In addition, you can org perm id as well in the search like (IssuerOAPermID eq '5000066483'). And the perm id along with some other identifiers can be found using the following code:

import refinitiv.data as rd
from refinitiv.data.discovery import convert_symbols
response = convert_symbols(symbols=["BABA.K"])
response

Best regards,

Haykaz

Got it. That's very helpful to me, thank you very much!

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.