API schema
Schema
FTDividend
Type: object
Properties
| Name | Type | Description |
|---|---|---|
date | FTDate | |
divs | array of object | One or more dividends paid on this date. |
price | string | Closing price on the dividend date |
Example shape
{
"date": {
"marketdate": 0,
"juliandate": 0,
"strdate": "string",
"yyyymmdd": "string"
},
"divs": [
{
"type": "string",
"type_code": "string",
"value": 0
}
],
"price": "string"
}