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:
Best Answer
-
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:
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.
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
0
Answers
-
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?
0 -
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"])
responseBest regards,
Haykaz
0 -
Got it. That's very helpful to me, thank you very much!
0
Categories
- All Categories
- 6 AHS
- 36 Alpha
- 166 App Studio
- 6 Block Chain
- 4 Bot Platform
- 18 Connected Risk APIs
- 47 Data Fusion
- 33 Data Model Discovery
- 682 Datastream
- 1.4K DSS
- 613 Eikon COM
- 5.2K Eikon Data APIs
- 10 Electronic Trading
- Generic FIX
- 7 Local Bank Node API
- 3 Trading API
- 2.9K Elektron
- 1.4K EMA
- 248 ETA
- 552 WebSocket API
- 37 FX Venues
- 14 FX Market Data
- 1 FX Post Trade
- 1 FX Trading - Matching
- 12 FX Trading – RFQ Maker
- 5 Intelligent Tagging
- 2 Legal One
- 23 Messenger Bot
- 3 Messenger Side by Side
- 9 ONESOURCE
- 7 Indirect Tax
- 60 Open Calais
- 275 Open PermID
- 44 Entity Search
- 2 Org ID
- 1 PAM
- PAM - Logging
- 6 Product Insight
- Project Tracking
- ProView
- ProView Internal
- 22 RDMS
- 1.8K Refinitiv Data Platform
- 622 Refinitiv Data Platform Libraries
- 4 LSEG Due Diligence
- LSEG Due Diligence Portal API
- 4 Refinitiv Due Dilligence Centre
- Rose's Space
- 1.2K Screening
- 18 Qual-ID API
- 13 Screening Deployed
- 23 Screening Online
- 12 World-Check Customer Risk Screener
- 1K World-Check One
- 46 World-Check One Zero Footprint
- 45 Side by Side Integration API
- 2 Test Space
- 3 Thomson One Smart
- 10 TR Knowledge Graph
- 151 Transactions
- 143 REDI API
- 1.8K TREP APIs
- 4 CAT
- 26 DACS Station
- 121 Open DACS
- 1.1K RFA
- 104 UPA
- 191 TREP Infrastructure
- 228 TRKD
- 915 TRTH
- 5 Velocity Analytics
- 9 Wealth Management Web Services
- 84 Workspace SDK
- 11 Element Framework
- 5 Grid
- 18 World-Check Data File
- 1 Yield Book Analytics
- 46 中文论坛