# 基金列表

# 接口地址

investment/get_investment_fund_list_v2

# 接口参数

参数名 必选 说明
gp_id 所属gp id
institution_id 所属机构id
fund_type 根据基金类型筛选 ,根据关键词进行模糊搜索
fund_status 根据运作状态筛选 ,根据关键词进行模糊搜索
keywords_pattern 当搜索关键字时,此参数必填,1 根据所属机构名称筛选, 2 根据基金名称筛选 3 根据私募基金管理人名称筛选
keywords 搜索的关键词, 根据关键词进行按照所选字段模糊搜索
order 对查出数据进行排序,1为数据注册时间, 2为数据的登记时间,3为数据的录入时间,4为更新时间默认是1
order_rules 对查出数据排序规则, 1为DESC(倒序), 2为ASC(正序),默认为1
is_defer 是否是延期基金 1为是 延期基金会展示(original_exp_date,exp_date,change_date)字段

# 返回实例

{
    "code":1000,
    "info":"Success",
    "data":[
        {
            "fund_id":"565",
            "fund_name":"苏州国创兴润股权投资合伙企业(有限合伙)",
            "fund_type":"创业投资基金",
            "fund_born_date":"2018-04-13",
            "fund_records_date":"2018-06-11",
            "fund_status":"正在运作",
            "fund_number":"SCX850",
            "fund_currency":"人民币现钞",
            "gp_id":"12",
            "gp_name":"苏州工业园区元禾辰坤股权投资基金管理中心(有限合伙)",
            "institution_id":"212",
            "institution_name":"元禾控股",
            "original_exp_date": "2023-09-04",
            "exp_date": "2033-09-03",
            "change_date": "2024-01-23",
            "create_time":"2020-10-20 00:00:00",
            "update_time":"2020-10-20 00:00:00"
        },
        ...
    ],
    "total":10
}

# 字段说明

字段 说明
fund_id 基金id
fund_name 基金名称
fund_type 基金类型
fund_born_date 基金成立时间
fund_records_date 基金备案时间
fund_status 基金运作状态
fund_number 基金编号
fund_currency 基金币种
gp_id 私募基金管理人id
gp_name 私募基金管理人名称
institution_id 所属机构id
institution_name 所属机构名称
original_exp_date 原到期日
exp_date 延期后到期日
change_date 变更日期
create_time 数据创建时间
update_time 数据更新时间