# 募资事件
# 接口地址
raiseevent/get_raiseevent_list_v2
# 接口参数
参数名 | 必选 | 说明 |
---|---|---|
institution_id | 否 | 募资机构 ID |
fundraiser_type | 否 | 募资方类型,根据输入值进行模糊搜索,如:'成长基金','房地产' |
currency_id | 否 | 募资币种ID(查看映射关系) |
date_pattern | 否 | 按照时间筛选模式, 1为按照数据创建时间筛选, 2为按照数据更新时间筛选, 3为募资事件发生时间筛选 |
date_start | 否 | 时间筛选模式下的必选参数, 起始日期, 如:2017-4-1 |
date_end | 否 | 时间筛选模式下的必选参数, 截止日期, 如:2017-4-10 注, 起始日期需早于截止日期 |
page | 否 | 分页参数(默认为1) |
start | 否 | 起始显示条数(默认为0) |
limit | 否 | 每页显示公司个数(默认为20) |
order | 否 | 对查出数据进行排序, 1为录入时间, 2为按照更新时间 3为退出时间, 默认录入时间 |
order_rules | 否 | 对查出数据排序规则, 1为DESC(倒序), 2为ASC(正序),默认为1 |
# 返回实例
{
"code":1000,
"info":"Success",
"total":2328,
"data":[
...
{
"event_id":"2326",
"event_title":"平安海外控股旗下2支PE基金成功募集8.75亿美元",
"event_des":"10月20日消息,中国平安保险(集团)股份有限公司(以下简称“中国平安”)旗下主要的海外投资及资产管理平台——中国平安保险海外(控股)有限公司及其子公司(以下简称“平安海外控股”)宣布成功完成旗下平安海外私募股权优选基金(Ping An Global Equity Selection Fund)和平安海外私募股权基金(Ping An Global Equity Fund)(以下合称“该基金”)的募集。该基金面向全球投资者合共募集资金8.75亿美元。其中,新加坡政府投资公司(GIC)和总部位于瑞士的 Montana Capital Partners(MCP)是该基金的锚定投资者。平安海外控股与其他投资者认购了其余基金份额。 ",
"related_news":[
{
"news_time":"2020-10-20 00:00:00",
"news_title":"平安海外控股旗下2支PE基金成功募集8.75亿美元",
"news_url":"https://pe.pedaily.cn/202010/461110.shtml"
}
],
"raising_year":"2020",
"raising_month":"10",
"raising_day":"20",
"raising_institution":{
"type":"资产管理",
"id":"3632",
"name":"平安海外控股"
},
"specific_fund":{
"type":"investment",
"fund_id":"3632",
"fund_name":"平安海外控股"
},
"fundraiser_type":"保险公司及其子公司的资产管理计划",
"currency_id":"2",
"currency_name":"美元",
"detail_amount":"87500",
"approximate_amount_id":"4",
"approximate_amount_name":"亿元及以上",
"lp":[
{
"lp_id":"1055",
"lp_name":"新加坡政府投资公司",
"lp_type":"主权财富基金",
"lp_detail_amount":""
}
]
"create_time":"2020-10-20 00:00:00",
"update_time":"2020-10-20 00:00:00",
}
]
}
# 字段说明
字段 | 说明 |
---|---|
event_id | 事件id |
event_title | 事件标题 |
event_des | 事件简介 |
related_news/ | 相关报道/ |
related_news/news_time | 时间 |
related_news/news_title | 标题 |
related_news/news_url | 链接 |
raising_year | 募资时间-年 |
raising_month | 募资时间-月 |
raising_day | 募资时间-日 |
raising_institution/ | 募资机构/ |
raising_institution/type | 机构类型 |
raising_institution/id | 募资机构ID |
raising_institution/name | 募资机构名称 |
specific_fund/ | 具体募资方/ |
specific_fund/type | 具体募资方类型 |
specific_fund/id | 具体募资方ID |
specific_fund/name | 具体募资方名称 |
fundraiser_type | 募资基金类型 |
currency_id | 币种ID |
currency_name | 币种 |
detail_amount | 募资金额 详细(单位:万) |
approximate_amount_id | 近似金额ID |
approximate_amount_name | 近似金额 |
LP/ | 出资LP/ |
LP/lp_id | LP ID |
LP/lp_name | LP 名称 |
LP/lp_type | LP类型 |
LP/lp_detail_amount | LP投资金额(单位:万) |
create_time | 数据创建时间 |
update_time | 数据更新时间 |