NewConnect Claude, Gemini, 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:

  • /v1/mutualfund - Get detailed information for a specific mutual fund by ticker

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
269ms307ms350ms736ms975ms

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 our APIs in the API playground

Sign up for a free API key to get started — no credit card required.

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
{
    fund_ticker:"VFIAX",
    fund_name:"Vanguard 500 Index Fund Admiral Shares",
    price:544.33,
    isin:"US9229087104",
    cusip:"922908710",
    country:"US",
    aum:1597655799135
}

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.

Frequently Asked Questions

  • Yes, but you must have a premium subscription. Commercial use of the Mutual Fund API is not permitted on the free tier. See our pricing page to choose a plan that fits your needs.
  • Sign up for a free account to instantly get your API key, then pass it in the X-Api-Key header on every request. The documentation above includes ready-to-run examples in cURL, Python, JavaScript, Node.js, and more.
  • Your API requests will simply be denied once you hit your monthly quota — you will never be charged more than the plan you signed up for. To increase your quota, you can upgrade your plan any time on our pricing page.
  • The API responds with a standard HTTP status code and a JSON error message describing the problem. See our error codes reference for the full list of codes and how to resolve each one, or contact support if you need help.
  • Passing a ticker (e.g. VFIAX) returns a JSON object with fund_name, the isin and cusip identifiers, the issuer country, plus price and aum (assets under management in USD). The price and aum fields are premium-only.
  • The price field is updated once per day in USD, usually after the US market closes and by 6pm ET. For intraday equity quotes, see the Stock Price API instead.