接入文件
介面簡介
本介面提供基於基金程式碼的基金經理基礎資料查詢服務。輸入目標基金的唯一程式碼,系統將返回該基金現任或歷任經理的詳細檔案,包括姓名、性別、最高學歷、從業背景介紹、任職日期及當前在職狀態等結構化資料。
適用場景
- 金融終端展示:在理財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 |