API schema
Schema
FTInfoPortfolio
Describes a funds or ETFs holdings
Type: object
Properties
| Name | Type | Description |
|---|---|---|
ticker | string | Ticker symbol of security requested |
topten | object | Top ten (or more) holdings by weight |
index | object | Various indexes related to security |
assetclass | object | Percentage weighting of holdings by asset class |
region | object | Percentage weighting of holdings by region |
bondquality | object | Bond quality details (AAA,AA,A, B, BB, etc) |
marketcap | object | Object showing security's equity holding details by market cap |
sector | object | Percentage weighting of holding by sector |
sectorBond | object |
Example shape
{
"ticker": "string",
"topten": {
"date": "string",
"datalist": [
{
"name": "string",
"ticker": "string",
"netweight": "string"
}
]
},
"index": {
"ft": {
"name": "string",
"ticker": "string"
},
"prospectus": {
"name": "string"
},
"category": {
"name": "string"
}
},
"assetclass": {
"date": "string",
"datalist": [
{
"name": "string",
"longweight": "string",
"shortweight": "string",
"netweight": "string"
}
]
},
"region": {
"date": "string",
"datalist": [
{
"netweight": "string",
"name": "string"
}
]
},
"bondquality": {
"datalist": [
{
"name": "string",
"netweight": "string"
}
]
},
"marketcap": {
"datalist": [
{
"name": "string",
"netweight": "string"
}
]
},
"sector": {
"date": "string",
"datalist": [
{
"netweight": "string",
"name": "string"
}
]
}
}