Top Performing Funds
Retrieve the top performing mutual funds based on returns.
GET/3.0/funds/top-performers
Description
This endpoint returns a list of the top performing mutual funds ranked by their returns. It provides insights into which funds have delivered the best performance, helping investors identify leading funds and make informed investment decisions.
Request
Authentication
- Type: Bearer Token
- Required: Yes
Parameters
This endpoint does not accept any query parameters.
Response
Success Response (200)
{
"status": "ok",
"message": "",
"data": [
{
"symbol": "AGCF",
"name": "Alfalah GHP Fund",
"returns": 0.2048
},
{
"symbol": "PKGF",
"name": "Pakistan Growth Fund",
"returns": 0.1956
},
{
"symbol": "INMF",
"name": "Invest & Grow Fund",
"returns": 0.1837
},
{
"symbol": "SCMF",
"name": "Sarmaya Chuzidon Fund",
"returns": 0.1742
},
{
"symbol": "ABIF",
"name": "Ablation Balanced Fund",
"returns": 0.1658
}
]
}
Response Fields
| Field | Type | Description |
|---|---|---|
symbol | string | Fund symbol / reference identifier |
name | string | Full name of the mutual fund |
returns | number | Return percentage for the specified period |
Error Responses
For detailed Common Error responses, see the Error Handling.
Examples
Get Top Performing Funds
curl -X GET "https://csapis.com/3.0/funds/top-performers" \
-H "Authorization: Bearer YOUR_API_TOKEN"
Use Cases
- Performance Ranking: Identify top performing funds in the market
- Investment Selection: Compare leading funds for investment decisions
- Market Analysis: Track which fund categories are performing best
- Investor Comparison: Help investors choose funds based on performance
- Performance Reports: Generate reports highlighting top performers
- Benchmarking: Compare fund performance against market leaders