getFundHoldings
Access real-time data on securities and weights in ETFs and mutual funds to analyze asset composition and fund strategies using the Financial Modeling Prep API.
Instructions
Get a detailed breakdown of the assets held within ETFs and mutual funds using the FMP ETF & Fund Holdings API. Access real-time data on the specific securities and their weights in the portfolio, providing insights into asset composition and fund strategies.
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"
}