getFundInfo
Retrieve detailed ETF and mutual fund data such as ticker symbol, fund name, expense ratio, and assets under management using a symbol-based query for financial analysis.
Instructions
Access comprehensive data on ETFs and mutual funds with the FMP ETF & Mutual Fund Information API. Retrieve essential details such as ticker symbol, fund name, expense ratio, assets under management, and more.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes | Fund symbol |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"symbol": {
"description": "Fund symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}