GET/mutual-fund/list
Query Parameters
| Name | Type | Example | Description |
|---|---|---|---|
| page | number | 1 | Page number to fetch. |
| per_page | number | 100 | Number of records to return per page. |
| name | string | Example Fund Name | Name of the mutual fund to filter by. |
| ticker | string | EXMPL | Ticker symbol of the mutual fund to filter by. |
Auth
headers: { 'Authorization': 'Replace with your API token' }
Examples
fetch('https://api.gurufocus.com/data/mutual-fund/list?page=1&per_page=100&name=Example+Fund+Name&ticker=EXMPL', { method: 'GET', headers: { 'Authorization': 'Replace with your API token' }})
Responses
Successful response. The exact payload fields depend on this endpoint.
Example Body (Field Reference)
No response body is documented for this status.
Introduction
Returns a list of mutual funds. The response structure is the same as Guru List, with one additional field: fund_ticker. You can query by name or ticker of the mutual funds.
/mutual-fund/list?name=
or
/mutual-fund/list?ticker=
Response Reference
| Display Name | Field Name | Type |
|---|---|---|
| ID | id | number |
| Name | name | string |
| Picture | picture | string |
| Fund Ticker | fund_ticker | string |
| Firm | firm | string |
| Profile | profile | string |
| Investment Philosophy | investment_philosophy | string |
| Number of Stocks | number_of_stocks | number |
| Equity | equity | number |
| Last Update | last_update | unix timestamp |
| 10Y Return | return_10y | string |
| 1Y Return | return_1y | string |
| Return Yearly | return_yearly | array |
| Package | package | string |
| 13F Date | date_13f | date string |
| Return Update Time | return_update_time | unix timestamp |
Return Yearly
| Display Name | Field Name | Type |
|---|---|---|
| Year | year | number |
| Return | return | number |