Newly Launched Funds List
Newly Launched Funds List
Documentation
API Overview
This API is used to retrieve a list of newly issued funds in the current market. It supports filtering by sales status (available/unavailable) and provides pagination. The returned data includes core fields such as fund code, name, type, fund manager, subscription start and end dates, minimum subscription amount, and fee rates, helping developers quickly integrate new fund issuance information.
Use Cases
- Financial News Platforms: Display the latest issued fund products to enrich content libraries.
- Wealth Management Apps: Provide users with new fund subscription reminders and comparison features.
- Investment Advisory Systems: Analyze the market distribution and type trends of newly issued funds.
Request and Response Details
- Request Method: POST
- Key Parameters:
saleStatus: Sales status, true for available for sale, false for not available for sale.pageNo: Page number, defaults to 1.pageSize: Number of records per page, defaults to 10, maximum 50.- Response Result:
data.data: Array of fund objects, includingfundCode(fund code),fundName(fund name),beginDate(subscription start date),endDate(subscription end date),fundManagerName(fund manager), etc.data.count: Total number of records, used for frontend pagination calculation.
Integration Suggestions
- Pagination Handling: It is recommended to implement frontend pagination based on
data.countandpageSizeto avoid requesting too much data at once. - Caching Strategy: Newly issued fund data updates relatively infrequently; it is recommended to cache list data for a short period (e.g., 1-4 hours) to reduce API call frequency.
- Status Filtering: If only displaying purchasable products, please set
saleStatustotrueto improve user conversion rates.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"saleStatus": "销售状态,true为可售,false为不可售",
"pageNo": "页码,默认1",
"pageSize": "每页记录数,默认10,最大50"
}Response Example
{
"code": 200,
"msg": "成功",
"taskNo": "492823910191448773171202",
"data": {
"data": [
{
"fundType": "混合型-偏股",
"beginDate": "2024-07-08",
"fundCode": "021370",
"endDate": "2024-08-02",
"fundOriginalFee": "",
"minPurchase": "10",
"fundDiscountFee": "0.00%",
"saleStatus": true,
"fundManagerName": "孙蒙",
"fundName": "华夏智胜优选混合发起式C"
}
],
"limit": "20",
"count": 144,
"page": "1"
}
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| type | string | object |
| properties | object | {...} |
| properties.saleStatus | object | {...} |
| properties.saleStatus.type | string | string |
| properties.saleStatus.description | string | 销售状态,true为可售,false为不可售 |
| properties.pageNo | object | {...} |
| properties.pageNo.type | string |
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 |