# 创投人物列表

# 接口地址:

  • /person/get_person_list

# 接口参数:

参数名 必选 说明
page 分页参数 (默认为1)
start 起始显示条数(默认为0)
limit 每页显示公司个数 (默认为20, 最大为100)
fifter_pattern 可选参数, 若输入此参数则接口启动增量数据筛选模式, 1为按照创建时间筛选, 2为按照更新时间筛选
date_start 增量数据筛选模式下的必选参数, 起始日期, 如:2017-4-1
date_end 增量数据筛选模式下的必选参数, 截止日期, 如:2017-4-10 注, 起始日期需早于截止日期
order 对查出数据进行排序, 1为创投人物的录入时间, 2为创投人物的更新时间,默认是创投人物的录入时间
per_type 人物类型,1 创业者,2 天使投资人,3 投资人
per_industry_or_field_id 默认是所有,如果是创业者,则添加主行业对应的id,如果是投资人或天使投资人,则需要传入领域对应的id
per_industry_or_field_name 默认是所有,如果是创业者,则添加主行业对应的name,如果是投资人或天使投资人,则需要传入领域对应的name

# 返回实例

{
    "code": 1000,
    "info": "Success",
    "total": 99512,
    "data": [
        {
            "per_id": "102827",
            "per_name": "崔瑾",
            "per_type_name": "创业者,天使投资人",
            "per_entrepreneurship": [
                {
                    "com_id": "32795362",
                    "com_name": "光涧实验室",
                    "des": "联合创始人"
                }
            ],
            "per_institution": [],
            "create_time": "2018-04-22 13:18:47",
            "update_time": "2018-04-22 13:23:55"
        },
        // 省略... 
    ]
}

# 字段说明

字段 说明
per_id 人物id
per_name 人物名称
per_type_name 人物属性
per_entrepreneurship person的创业经历
per_entrepreneurship/com_id 创业的公司id
per_entrepreneurship/com_name 创业的公司名
per_entrepreneurship/des person的职位
per_institution person所在机构
per_institution/invst_id 机构id
per_institution/invst_name 机构的名称
per_institution/des 所在机构的职位
per_institution/invsp_role_status person的在职情况
create_time 录入时间
update_time 更新时间
9aawsaBAdH0J