NewConnect Claude, Cursor, ChatGPT, and other AI agents to API Ninjas via our MCP server

Mutual Fund API

The Mutual Fund API provides information about Mutual Funds including price, assets under management, and identifiers (ISIN, CUSIP).

Available endpoints:

For data on Electronic Transfer Funds (ETFs), use the ETF API instead.

(4.7)

From 9,505 users

2,000+

Applications using this API

API Status

Online - All Systems Operational

API Response Times

Average
P50
P75
P90
P95
312ms334ms394ms533ms1037ms

Didn't find what you were looking for? Suggest an improvement


/v1/mutualfund GET

https://api.api-ninjas.com/v1/mutualfund

Returns comprehensive information about any Mutual Fund by its ticker.

Parameters

  • ticker  required

    Mutual Fund ticker symbol (e.g., VFIAX, FXAIX, FZROX).

Headers

  • X-Api-Key  required

    API Key associated with your account.

Response

A JSON object with the following fields or an error if the request is unsuccessful.

  • fund_ticker

    Mutual Fund ticker symbol.

  • fund_name

    Mutual Fund name.

  • isin

    International Securities Identification Number (ISIN) of the Mutual Fund.

  • cusip

    Nine-character Committee on Uniform Security Identification Procedures (CUSIP) identifier for the Mutual Fund.

  • country

    Country of the Mutual Fund issuer.

  • price premium only

    Current price of the Mutual Fund in USD. Mutual Fund prices are updated once a day, usually after the US market closes (1pm ET) and by 6pm ET.

  • aum premium only

    Assets under management of the Mutual Fund in USD.

Sample Request Live Demo!

ticker

Try this API endpoint with all available parameters in our API playground

https://api.api-ninjas.com/v1/mutualfund?ticker=VFIAX

Headers

X-Api-KeyLog in or sign up to get your API Key

Sample Response

JSON

Code Examples

1 2 curl -X GET "https://api.api-ninjas.com/v1/mutualfund?ticker=VFIAX" \ -H "X-Api-Key: YOUR_API_KEY"

If your programming language is not listed in the Code Example above, you can still make API calls by using a HTTP request library written in your programming language and following the above documentation.


/v1/mutualfundlist GET Business, Professional, or annual subscriptions Only

https://api.api-ninjas.com/v1/mutualfundlist

Returns Mutual Fund ticker symbols supported by the Mutual Fund API, paginated up to 1000 per call. Useful for discovering which tickers can be passed to /v1/mutualfund or /v1/mutualfundsearch. Increment the offset parameter by 1000 until fewer than 1000 results are returned to walk the entire list.

Parameters

  • offset  optional

    Number of results to skip for pagination. Default 0. Page size is 1000.

Headers

  • X-Api-Key  required

    API Key associated with your account.

Response

A JSON array of strings (up to 1000 supported Mutual Fund ticker symbols starting at offset) or an error if the request is unsuccessful.

Sample Request Live Demo!

offset

Try this API endpoint with all available parameters in our API playground

https://api.api-ninjas.com/v1/mutualfundlist

Headers

X-Api-KeyLog in or sign up to get your API Key

Sample Response

JSON

Code Examples

1 2 curl -X GET "https://api.api-ninjas.com/v1/mutualfundlist?offset=0" \ -H "X-Api-Key: YOUR_API_KEY"

/v1/mutualfundsearch GET Business, Professional, or annual subscriptions Only

https://api.api-ninjas.com/v1/mutualfundsearch

Search for Mutual Funds matching a combination of filters. Results are sorted by assets under management (descending) and capped at 50 per page. Use the offset parameter to paginate.

Parameters

  • min_aum  optional

    Minimum assets under management in USD (e.g. 100000000000 for $100B).

  • max_aum  optional

    Maximum assets under management in USD.

  • country  optional

    ISO country code of the Mutual Fund issuer (e.g. US, CA, DE).

  • offset  optional

    Number of results to skip for pagination. Default 0. Page size is 50.

Note: at least one of min_aum, max_aum, or country must be provided.

Headers

  • X-Api-Key  required

    API Key associated with your account.

Response

A JSON array of up to 50 matching Mutual Funds (sorted by AUM descending) or an error if the request is unsuccessful. Each entry contains the following fields. For full details on a specific result, call /v1/mutualfund with its symbol.

  • symbol

    Mutual Fund ticker symbol.

  • name

    Mutual Fund name.

  • country

    ISO country code of the Mutual Fund issuer.

  • aum

    Assets under management of the Mutual Fund in USD.

Sample Request Live Demo!

min_aum
max_aum
country
offset

Try this API endpoint with all available parameters in our API playground

https://api.api-ninjas.com/v1/mutualfundsearch?min_aum=100000000000&country=US

Headers

X-Api-KeyLog in or sign up to get your API Key

Sample Response

JSON

Code Examples

1 2 curl -X GET "https://api.api-ninjas.com/v1/mutualfundsearch?min_aum=100000000000&country=US" \ -H "X-Api-Key: YOUR_API_KEY"