# 基金列表
# 接口地址:
- /investment/get_investment_fund_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 | 否 | 搜索的关键词, 可以根据所属机构名称, 基金名称, 私募基金管理人名称, 基金类型, 运作状态, 等字段模糊搜索 |
| keywords_pattern | 否 | 当搜索关键字时,此参数必填,1 根据所属机构名称筛选, 2 根据基金名称筛选 3 根据私募基金管理人名称筛选, 4 根据基金类型筛选 5根据运作状态筛选 |
# 返回实例
{
"code": 1000,
"info": "Success",
"data": [
{
"fund_id": "603",
"fund_name": "天津红杉聚业股权投资合伙企业(有限合伙)",
"gp_id": "15",
"gp_name": "红杉资本股权投资管理(天津)有限公司",
"fund_type": "股权投资基金",
"fund_born_time": "2010-12-02",
"fund_records_time": "2014-03-16",
"fund_status": "正在运作",
"invest_currency_id": "",
"invst": [
{
"invst_id": "1",
"invst_name": "红杉资本中国"
}
],
"historical_invse_count": 26
}
// 省略...
],
"total": 1
}
# 字段说明
| 字段 | 说明 |
|---|---|
| fund_id | 基金id |
| fund_name | 基金名称 |
| gp_id | 私募基金管理人id |
| gp_name | 私募基金管理人名称 |
| fund_type | 基金类型 |
| fund_born_time | 基金成立时间 |
| fund_records_time | 基金备案时间 |
| fund_status | 基金运作状态 |
| invest_currency_id | 基金币种id |
| invst | 所属机构 |
| invst/invst_id | 机构id |
| invst/invst_name | 机构名称 |
| historical_invse_count | 基金历史投资数量 |