# 基金管理方列表
# 接口地址:
- /investment/get_investment_gp_list
# 接口参数:
| 参数名 | 必选 | 说明 |
|---|---|---|
| page | 否 | 分页参数(默认为1) |
| start | 否 | 起始显示条数(默认为0) |
| limit | 否 | 每页显示公司个数(默认为20) |
| fifter_pattern | 否 | 若输入此参数则接口启动增量数据筛选模式, 1为按照成立时间筛选, 2为按照登记时间筛选 |
| date_start | 否 | 增量数据筛选模式下的必选参数, 起始日期, 如:2017-4-1 |
| date_end | 否 | 增量数据筛选模式下的必选参数, 截止日期, 如:2017-4-10 注, 起始日期需早于截止日期 |
| order | 否 | 对查出数据进行排序, 1为成立时间, 2为按照登记时间, 默认成立时间 |
| invst_id | 否 | 所属机构id |
| keywords | 否 | 搜索的关键词, 可以根据所属机构名称, 私募基金管理人名称, gp机构类型, 等字段模糊搜索 |
| keywords_pattern | 否 | 当搜索关键字时,此参数必填,1 根据所属机构名称筛选, 2 根据私募基金管理人名称筛选, 3 根据gp机构类型筛选 |
# 返回实例
{
"code": 1000,
"info": "Success",
"data": [
{
"id": "13842",
"gp_name": "中银资产基金管理有限公司",
"gp_group_type": "私募股权、创业投资基金管理人",
"gp_found_time": "2018-09-29",
"gp_register_time": "2018-11-27",
"invst": [
{
"invst_id": "3060",
"invst_name": "中银投资"
}
],
"fund_count": "",
"historical_invse_count": ""
},
{
"id": "4626",
"gp_name": "北京红杉坤德投资管理中心(有限合伙)",
"gp_group_type": "私募股权、创业投资基金管理人",
"gp_found_time": "2015-06-03",
"gp_register_time": "2015-07-15",
"invst": [
{
"invst_id": "1",
"invst_name": "红杉资本中国"
}
],
"fund_count": 35,
"historical_invse_count": 54
},
// 省略...
]
}
# 字段说明
| 字段 | 说明 |
|---|---|
| id | 私募基金管理人id |
| gp_name | 私募基金管理人名称 |
| gp_group_type | gp机构类型 |
| gp_found_time | gp成立时间 |
| gp_register_time | gp登记时间 |
| invst | 所属机构 |
| invst/invst_id | 机构id |
| invst/invst_name | 机构名称 |
| fund_count | 管理基金数量 |
| historical_invse_count | 历史投资数量 |