getFundSectorWeighting
Analyze ETF sector allocations to identify exposure by sector. Input a fund symbol to retrieve the percentage of assets invested in each industry for informed investment decisions.
Instructions
The FMP ETF Sector Weighting API provides a breakdown of the percentage of an ETF's assets that are invested in each sector. For example, an investor may want to invest in an ETF that has a high exposure to the technology sector if they believe that the technology sector is poised for growth.
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"
}