API schema
Schema
FTDividends
Type: object
Properties
| Name | Type | Description |
|---|---|---|
numdivs | string | number of dividends returned in the response |
datarange | array of FTDividend | Array of dividend dates. Each date contains a nested divs array because a security can have more than one dividend type on the same date. |
metadata | object | Additional metadata about the response, including lookback restrictions |
dtestart | FTDate | |
dteend | FTDate | |
err | err |
Example shape
{
"numdivs": "string",
"datarange": [
{
"date": {
"marketdate": 0,
"juliandate": 0,
"strdate": "string",
"yyyymmdd": "string"
},
"divs": [
{
"type": "string",
"type_code": "string",
"value": 0
}
],
"price": "string"
}
],
"metadata": {
"note": "string",
"historicalAccessRange": "string",
"validFromDate": "string"
},
"dtestart": {
"marketdate": 0,
"juliandate": 0,
"strdate": "string",
"yyyymmdd": "string"
},
"dteend": {
"marketdate": 0,
"juliandate": 0,
"strdate": "string",
"yyyymmdd": "string"
},
"err": {
"code": "-5000000",
"message": "invalid ticker",
"link": "string"
}
}