# Purchase info The mutual funds purchase information endpoint provides detailed purchasing details for global mutual funds. It returns data on minimum investment requirements, current pricing, and a list of brokerages where the mutual fund can be purchased. This endpoint is useful for users looking to understand the entry requirements and options available for investing in specific mutual funds. **API credits cost:** `200` per request > **Note:** This API endpoint is available starting with the [Ultra](https://twelvedata.com/pricing) plan. ## Parameters - `symbol` (string, optional, see notes) Symbol ticker of mutual fund - `figi` (string, optional, see notes) Filter by financial instrument global identifier (FIGI). This request parameter is available starting with the Ultra plan - `isin` (string, optional, see notes) Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section - `cusip` (string, optional, see notes) The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section - `country` (string, optional) Filter by country name or alpha code, e.g., `United States` or `US` - `dp` (integer, optional) Number of decimal places for floating values. Accepts value in range [0,11] **Notes:** - At least one of the following parameters is required: `symbol`, `figi`, `isin`, `cusip`. ## Response - `mutual_fund` (object) Mutual fund information - `purchase_info` (object) Purchase information for the mutual fund - `expenses` (object) Costs associated with investing in the mutual fund, including gross and net expense ratios - `expense_ratio_gross` (number) Cost of investing in a mutual fund - `expense_ratio_net` (number) Percentage of mutual fund assets steered toward a fund's operating expenses and fund management fees - `minimums` (object) Minimum investment amounts required to purchase or add to the mutual fund, including IRA minimums - `initial_investment` (integer) Investment minimum - `additional_investment` (integer) Minimum amount of additional investment - `initial_ira_investment` (string) Investment minimum for IRA - `additional_ira_investment` (string) Minimum amount of additional investment for IRA - `pricing` (object) Pricing information for the mutual fund - `nav` (number) Net Asset Value: fund value minus liabilities - `12_month_low` (number) Lowest price of the fund over the last year - `12_month_high` (number) Highest price of the fund over the last year - `last_month` (number) Fund price at the end of the last month - `brokerages` (array of string) List of brokerages where mutual fund can be purchased - `status` (string) Status of the response ## Example Request ```bash curl "https://api.twelvedata.com/mutual_funds/world/purchase_info?symbol=1535462D&apikey=demo" ``` ## Example Response ```json { "mutual_fund": { "purchase_info": { "expenses": { "expense_ratio_gross": 0.0022, "expense_ratio_net": 0.001 }, "minimums": { "initial_investment": 0, "additional_investment": 0, "initial_ira_investment": null, "additional_ira_investment": null }, "pricing": { "nav": 10.09, "12_month_low": 9.630000114441, "12_month_high": 12.10000038147, "last_month": 11.050000190735 }, "brokerages": [] } }, "status": "ok" } ```