中资美元债基本资料


接口:cnusdb_desc
描述:获取中资美元债基本资料
限量:单次最大10000
数据更新频率:日
数据更新时间:07:00;12:00;18:00

输入参数

名称 类型 必选 描述
code str N 债券代码
full_name str N 债券名称
issuer str N 发行人
ann_date str N 公告日期
first_issue str N 发行起始日
last_issue str N 发行截止日

输出参数

名称 类型 默认显示 描述
code str Y 债券代码
full_name str Y 债券名称
issuer str Y 发行人
issue_ann str Y 发行公告日
first_issue str Y 发行起始日
last_issue str Y 发行截止日
amount_plan float Y 计划发行总量(亿元)
amount_act float Y 实际发行总量(亿元)
issue_price float Y 发行价格
par float Y 面值
couponrate float Y 发行票面利率(%)
spread float Y 利差(%)
carry_date str Y 计息起始日
end_date str Y 计息截止日
maturity_date str Y 到期日
term_year float Y 债券期限(年)
term_day float Y 债券期限(天)
payment_date str Y 兑付日
delist_date str Y 退市日期
issue_type float Y 发行方式
guar_introduction str Y 担保简介
bgnd_byplacing str Y 上网发行起始日期
endd_byplacing str Y 上网发行截止日期
amount_byplacing float Y 上网发行数量(亿元)
underwriting_code float Y 承销方式代码
issuer_code str Y 发行人编号
former_code str Y 原债券代码
coupontxt str Y 利率说明
is_failure float Y 是否发行失败
is_crossmarket float Y 是否跨市场
coupon_datetxt str Y 付息日说明
subordinate_ornot float Y 是否次级债或混合资本债
tendrst_referyield float Y 参考收益率
curpar float Y 最新面值
former_code str Y 原债券代码
is_corporate_bond float Y 是否公司债
issuer_type str Y 发行人类型
special_bondtype str Y 特殊债券类型
is_payadvanced str Y 是否可提前兑付
is_callable str Y 是否可赎回
is_chooseright str Y 是否有选择权
is_netprice float Y 是否净价
is_act_days float Y 是否按实际天数计息
is_incbonds float Y 是否增发债
issue_object str Y 发行对象
actual_benchmark str Y 计息基准
register_file_type_code float Y 注册文件类型代码
register_file_number str Y 注册文件号
list_ann_date str Y 上市公告日
reimbursement str Y 偿还方式
bond_rating str Y 发行时债券评级
ann_date str Y 公告日期
amount_max float Y 发行金额上限
guarantee_id str Y 担保人ID
pinyin str Y 简称拼音
payment_type float Y 计息方式
interest_frequency str Y 付息频率
form str Y 债券形式
coupon float Y 息票品种
interest_type float Y 附息利率品种
act float Y 特殊年计息天数
issue_fee float Y 发行手续费率(%)
rede_feeration float Y 兑付手续费率(%)
taxrate float Y 所得税率
crncy_code str Y 货币代码
name str Y 债券简称
exchmarket str Y 交易所
guarantor str Y 担保人
guartype float Y 担保方式
list_date str Y 上市日期
years_number float Y 年内序号
div_record_date str Y 兑付登记起始日
code_byplacing str Y 上网发行认购代码

表信息

表中文名 表名 说明
中资美元债基本资料 CNUSDBonddesc 记录中资企业发行的美元债信息

示例

安装Python包

pip install dcube

导入datacube

import dcube as dc

用token初始化pro接口

pro = dc.pro_api('your token')

数据调取

df = pro.query('cnusdb_desc', code='40525.HK', fields='code,full_name,issuer,issue_ann')

或者

df = pro.cnusdb_desc(code='40525.HK')
置顶