接入文档
接口简介
本接口提供基于基金代码的基金经理基础数据查询服务。输入目标基金的唯一代码,系统将返回该基金现任或历任经理的详细档案,包括姓名、性别、最高学历、从业背景介绍、任职日期及当前在职状态等结构化数据。
适用场景
- 金融终端展示:在理财APP或网站中展示基金产品的管理团队详情。
- 投研数据分析:量化分析基金经理的从业年限、学历分布与业绩关联性。
- 合规风控审查:快速核实基金管理人的身份背景及当前任职有效性。
请求与返回说明
- 请求方式:POST
- 核心参数:
fundCode(字符串,必填),即目标基金的6位代码。 - 返回结果:JSON数组,包含经理对象。主要字段包括
name(姓名)、educationLevel(学历)、background(背景介绍)、gmtCreate(任职时间戳)、incumbent(是否在职)等。
接入建议
- 缓存策略:基金经理变更频率较低,建议对返回结果进行本地缓存(如24小时),以减少API调用成本并提升响应速度。
- 数据解析:注意
gmtCreate和gmtModified为毫秒级时间戳,前端展示时需转换为标准日期格式。 - 状态判断:务必检查
incumbent字段以区分现任与离任经理,避免在产品展示中错误标注管理状态。
接入示例代码
提供 Shell、Python、Go、Java、PHP 等常见接入示例,便于直接接到现有项目里。
请求示例
{
"fundCode": "基金代码"
}响应示例
[
{
"birthday": "",
"gmtModified": 1722464822000,
"gender": "1",
"educationLevel": "硕士",
"background": " 张璐,男,中国籍,10年证券从业经历,上海交通大学硕士研究生XXXXXXX",
"name": "张璐",
"managerId": "101014393",
"gmtCreate": 1564740005000,
"incumbent": false
}
]请求字段
以下字段根据示例 JSON 自动提取,仅作接入参考。
| 字段路径 | 类型 | 示例值 |
|---|---|---|
| type | string | object |
| properties | object | {...} |
| properties.fundCode | object | {...} |
| properties.fundCode.type | string | string |
| properties.fundCode.description | string | 基金代码 |
| required | array | "fundCode" |
| required[] | string | fundCode |
响应字段
以下字段根据示例 JSON 自动提取,仅作接入参考。
| 字段路径 | 类型 | 示例值 |
|---|---|---|
| type | string | array |
| items | object | {...} |
| items.type | string | object |
| items.properties | object | {...} |
| example | array | {"birthday":"","gmtModified":1722464822000,"gender":"1","educationLevel":"硕士","background":" 张璐,男,中国籍,10年证券从业经历,上海交通大学硕士研究生XXXXXXX","name":"张璐","managerId":"101014393","gmtCreate":1564740005000,"incumbent":false} |
| example[] | object | {...} |
| example[].birthday | string |