getLatest8KFilings
Access real-time 8-K SEC filings to track material events like mergers, acquisitions, and leadership changes for publicly traded companies. Set date ranges and pagination for precise results.
Instructions
Stay up-to-date with the most recent 8-K filings from publicly traded companies using the FMP Latest 8-K SEC Filings API. Get real-time access to significant company events such as mergers, acquisitions, leadership changes, and other material events that may impact the market.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from | Yes | Start date (YYYY-MM-DD) | |
limit | No | Limit the number of results | |
page | No | Page number for pagination | |
to | Yes | End date (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"from": {
"description": "Start date (YYYY-MM-DD)",
"type": "string"
},
"limit": {
"description": "Limit the number of results",
"type": "number"
},
"page": {
"description": "Page number for pagination",
"type": "number"
},
"to": {
"description": "End date (YYYY-MM-DD)",
"type": "string"
}
},
"required": [
"from",
"to"
],
"type": "object"
}