getFinancialReportXLSX
Download 10-K financial reports in XLSX format to analyze annual company data. Specify stock symbol, year, and period (Q1, Q2, Q3, Q4, FY) for accurate, spreadsheet-ready insights.
Instructions
Download detailed 10-K reports in XLSX format with the Financial Reports Form 10-K XLSX API. Effortlessly access and analyze annual financial data for companies in a spreadsheet-friendly format.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
period | Yes | Period (Q1, Q2, Q3, Q4, or FY) | |
symbol | Yes | Stock symbol | |
year | Yes | Year of the report |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"period": {
"description": "Period (Q1, Q2, Q3, Q4, or FY)",
"enum": [
"Q1",
"Q2",
"Q3",
"Q4",
"FY"
],
"type": "string"
},
"symbol": {
"description": "Stock symbol",
"type": "string"
},
"year": {
"description": "Year of the report",
"type": "number"
}
},
"required": [
"symbol",
"year",
"period"
],
"type": "object"
}