Skip to main content

Mutual Funds List

Retrieve a comprehensive list of all available mutual funds in the Pakistani market.

GET/3.0/funds

Description

This endpoint returns a directory list of all mutual funds with their basic identifiers (id, name, symbol, amc_id).

Request

Authentication

  • Type: Bearer Token
  • Required: Yes

Parameters

This endpoint does not accept any query parameters.

Response

Success Response (200)

{
"status": "ok",
"message": "",
"data": [
{
"id": "1aa0884f-6999-4977-a739-6a7830a8e5be",
"name": "786 Smart Fund",
"symbol": "786SMF",
"amc_id": "558af0cf-288b-4738-927c-3468093e9738"
},
{
"id": "9557dd30-5dfa-4b79-9bc5-f1635f1232f6",
"name": "ABL Cash Fund",
"symbol": "ABLCF",
"amc_id": "c4f54d48-7c96-4619-acd9-fc2ea1752d53"
}
]
}

Response Fields

FieldTypeDescription
idstringUnique fund identifier (UUID)
namestringFund name
symbolstringFund symbol/ticker
amc_idstringAsset Management Company ID

Error Responses

For detailed Common Error responses, see the Error Handling.

Examples

Get All Funds

curl -X GET "https://csapis.com/3.0/funds" \
-H "Authorization: Bearer YOUR_API_TOKEN"

Use Cases

  • Fund Directory: Browse the full list of available mutual funds
  • Lookup & Mapping: Resolve fund identifiers, symbols, and names
  • AMC Association: Map each fund to its managing AMC via amc_id
  • Application Integration: Populate fund selection lists and dropdowns