Normalized format
Contract shape: meta, columns, rows, and periods, with optional debug.facts when debug=true.
{
"meta": {
"ticker": "AAPL",
"companyName": "Apple Inc.",
"statement": "income_statement",
"frequency": "annual",
"view": "restated",
"currency": "USD",
"fiscalYearEnd": "Sep 30",
"titleSlug": "AAPL_income-statement_Annual_Restated",
"sourceRegime": "sec_edgar",
"requestedPeriods": 3,
"returnedPeriods": 3,
"historyCoverage": "full",
"qualityFlags": []
},
"columns": ["2023", "2024", "2025"],
"rows": [
{
"metricCode": "gross_profit",
"label": "Gross Profit",
"depth": 0,
"unit": "USD",
"rowKind": "metric",
"values": [169148000000, 180683000000, 195036000000],
"qualityFlags": []
}
],
"periods": {
"2025": {
"revenue_total": 416161000000,
"eps_diluted": 7.46
}
}
}
Matrix format
Contract shape: workbook-style rows with display_values, display scale metadata, and a footer for table exports.
{
"meta": {
"ticker": "AAPL",
"statement": "income_statement",
"frequency": "annual",
"view": "restated",
"currency": "USD",
"fiscalYearEnd": "Sep 30",
"titleSlug": "AAPL_income-statement_Annual_Restated",
"requestedPeriods": 3,
"returnedPeriods": 3,
"historyCoverage": "full",
"displayScale": "thousands_when_large",
"negativeStyle": "parentheses"
},
"columns": ["2023", "2024", "2025"],
"rows": [
{
"metric_code": "revenue_total",
"label": "Total Revenue",
"depth": 1,
"row_kind": "metric",
"unit": "USD",
"values": [383285000000, 391035000000, 416161000000],
"display_values": ["383,285,000", "391,035,000", "416,161,000"]
}
],
"footer": "Fiscal year ends in Sep 30 | USD"
}