Fund Manager History
Fund Manager History
Documentation
API Overview
This API provides a service to query historical data for a fund's past managers. By providing a standard fund code, developers can retrieve detailed information for all previous fund managers, including their name, unique ID, avatar (Base64 format), start date, and cumulative return during their tenure.
Use Cases
- Financial Data Analysis: Build fund profiles and analyze the impact of fund manager changes on performance.
- Investment Research Tools: Display the historical stability and past performance of a fund's management team to investors.
- Wealth Management App Development: Add a “Historical Managers” module to fund detail pages to enhance information transparency.
Request and Response Details
- Request Method: POST
- Core Parameter:
fundCode(string, required), which is the fund code to be queried. - Response Structure:
code/msg: API status code and description.data: Contains an array of past manager objects, indexed numerically (e.g., “0”, “1”).- Manager Detail Fields:
name: Array of manager names.gmtCreate: Start date (format YYYY-MM-DD).gmtGrowth: Return during tenure (numeric type, unit %).avatar: Array of manager avatar Base64 strings.
Integration Recommendations
- Data Parsing: The returned
dataobject uses numeric keys for ordering. It is recommended to convert it into an array for processing to maintain chronological order. - Avatar Handling: The
avatarfield returns Base64 encoded images, which can be directly used in thesrcattribute of<img>tags on the frontend. Pay attention to caching optimization. - Error Handling: Please check if
codeis 200. For non-success states, prompt the user or log the error based onmsg.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"fundCode": "基金代码"
}Response Example
{
"code": 200,
"msg": "成功",
"taskNo": "492823910191448773171202",
"data": {
"0": {
"name": [
"张璐"
],
"avatar": [
"data:image/jpg;base64,iVBORw0KGgoxxxxx"
],
"id": [
"145420292ef07aceb559cc8b7b7cd97a"
],
"gmtGrowth": -18.55,
"gmtCreate": "2023-05-04"
}
}
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| type | string | object |
| properties | object | {...} |
| properties.fundCode | object | {...} |
| properties.fundCode.type | string | string |
| properties.fundCode.description | string | 基金代码 |
| required | array | "fundCode" |
| required[] | string | fundCode |
Response Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| type | string | object |
| properties | object | {...} |
| properties.code | object | {...} |
| properties.code.type | string | number |
| properties.code.example | number | 200 |
| properties.code.description | string | 返回码,详见返回码说明 |
| properties.msg | object |