基本信息
接口地址
https://api.qixin.com/APIService/privateFund/getEmployeInfo数据格式
JSON
请求方式
GET
请求示例
https://api.qixin.com/APIService/privateFund/getEmployeInfo?name=中民创富投资管理有限公司描述
私募管理人高管,包括高管姓名、职务、是否有基金从业资格、资格获取方式、工作履历等
请求参数 (Headers)
| 参数名 | 类型 | 必填 | 描述 |
|---|---|---|---|
Auth-Version |
String | 是 | 2.0(参数值),固定传入:2.0 |
appkey |
String | 是 | 启信慧眼数据开放平台获取 ,获取方式:个人中心-安全中心-API 密钥,获取appkey的同时,请完成IP白名单的配置:个人中心-安全中心-API IP白名单设置,如未配置,接口调试会报错“104 未添加IP白名单” |
timestamp |
String | 是 | UNIX时间戳,精确到毫秒,示例:1656921036000,当前系统时间近10分钟有效 |
sign |
String | 是 | 请求认证签名,对appkey+timestamp+secret_key进行md5或者sha256摘要计算的结果,小写字符串(实际加密不带入‘+’) |
请求参数 (Query)
| 参数名 | 类型 | 必填 | 描述 |
|---|---|---|---|
name |
String | 是 | 企业全名/注册号/统一社会信用代码 |
skip |
Number | 否 | 跳过条目数(跳过的条数,默认不填返回前20条,取21到40条的数据,skip=20,以此类推进行取数) |
响应参数
| 参数名 | 类型 | 长度 | 描述 |
|---|---|---|---|
datadata.data |
Object | 0 | 返回查询结果,每次调用返回20条记录,如果没有匹配记录则返回为空。具体字段含义见下表 |
totaldata.data.total |
Number | 0 | 返回列表中记录总数 |
numdata.data.num |
Number | 0 | 本次调用返回记录数 |
itemsdata.data.items |
Array | 0 | 私募管理人高管信息列表 |
titledata.data.items.title |
String | 255 | 职务 |
is_qualifieddata.data.items.is_qualified |
Number | 3 | 是否有基金从业资格 |
recorddata.data.items.record |
String | 6000 | 工作履历 |
namedata.data.items.name |
String | 128 | 高管姓名 |
qualified_typedata.data.items.qualified_type |
String | 128 | 资格获取方式 |
fund_nodata.data.items.fund_no |
String | 64 | 登记编号 |
signdata.sign |
String | 32 | 数据签名 |
statusdata.status |
String | 10 | 返回结果状态 |
messagedata.message |
String | 255 | 返回结果消息 |
响应示例
JSON
{
"status": "200",
"message": "操作成功",
"sign": "00698b8cc90f176272235988d8b6d515",
"data": {
"total": 2,
"items": [
{
"title": "合规风控",
"is_qualified": 1,
"fund_no": "P1034097",
"name": "宋天池",
"qualified_type": "通过考试",
"record": "[{\"period\": \"2019.12-\", \"enterprise\": \"中民创富投资管理有限公司\", \"department\": \"中民创富投资管理有限公司另类投资部\", \"title\": \"合规风控负责人\"}, {\"period\": \"2019.12-2019.12\", \"enterprise\": \"中民创富投资管理有限公司\", \"department\": \"中民创富投资管理有限公司(老系统迁移数据)\", \"title\": \"合规风控负责人\"}, {\"period\": \"2018.03-2019.11\", \"enterprise\": \"中民投资本管理有限公司\", \"department\": \"投资部\", \"title\": \"高级投资经理\"}, {\"period\": \"2013.01-2018.03\", \"enterprise\": \"交通银行上海长宁支行\", \"department\": \"公司部\", \"title\": \"对公客户经理\"}, {\"period\": \"2012.09-2013.01\", \"enterprise\": \"无\", \"department\": \"无\", \"title\": \"无\"}]"
},
{
"title": "法定代表人,总经理,执行董事,信息填报负责人",
"is_qualified": 1,
"fund_no": "P1034097",
"name": "蒋倩",
"qualified_type": "通过考试",
"record": "[{\"period\": \"2020.01-\", \"enterprise\": \"中民创富投资管理有限公司\", \"department\": \"中民创富投资管理有限公司另类投资部\", \"title\": \"法定代表人,总经理,执行董事,信息填报负责人\"}, {\"period\": \"2019.03-2020.01\", \"enterprise\": \"中民创富投资管理有限公司\", \"department\": \"风险管理部\", \"title\": \"合规风控负责人\"}, {\"period\": \"2018.09-2019.03\", \"enterprise\": \"中民创富投资管理有限公司\", \"department\": \"另类投资部\", \"title\": \"投资总监\"}, {\"period\": \"2016.07-2018.09\", \"enterprise\": \"中民创富投资管理有限公司\", \"department\": \"投资部\", \"title\": \"投资经理\"}, {\"period\": \"2015.09-2018.09\", \"enterprise\": \"中民投资本管理有限公司\", \"department\": \"另类投资部\", \"title\": \"投资经理\"}, {\"period\": \"2012.07-2015.08\", \"enterprise\": \"华宝信托有限责任公司\", \"department\": \"投资银行二部\", \"title\": \"投资经理\"}]"
}
],
"num": 2
}
}
代码示例
javascript
let request = require('request');
let urlEncode = require('urlencode');
let crypto = require('crypto');
let baseUrl = 'https://api.qixin.com/APIService/privateFund/getEmployeInfo';
let appkey = '正式appkey';
let secretKey = '正式secret_key';
let timeStamp = new Date().getTime();
const hash = crypto.createHash('md5');
let sign = hash.update(appkey + timeStamp + secretKey).digest('hex');
let urlParams = {
name: 'name的值',
skip: 'skip的值'
}
let concatParams = []
for (let key in urlParams) {
concatParams.push(key + '=' + urlParams[key]);
}
let options = {
'method': 'GET',
'url': baseUrl + '?' + concatParams.join('&'),
'headers': {
'Connection': 'keep-alive',
'Auth-version': '2.0',
'appkey': appkey,
'timestamp': timeStamp,
'sign': sign
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});