Fermi reported net income of -$25.81M for the quarter ended Jun 2026. This income statement covers 6 quarters of results from Mar 2025 through Jun 2026, standardized by Business Quant from the company’s SEC filings.
| Income Statement | Mar2025 | Jun2025 | Sep2025 | Dec2025 | Mar2026 | Jun2026 |
|---|---|---|---|---|---|---|
| Operating items | ||||||
| Selling, General & AdministrativeSG&A | 0.08M | 5.61M | 37.78M | 134.32M | 166.24M | 26.76M |
| Operating ExpensesOpex | 0.08M | 5.61M | 37.78M | 134.32M | 166.24M | 26.76M |
| Operating IncomeOp. Inc | -0.08M | -5.61M | -37.78M | -134.32M | -166.24M | -26.76M |
| EBIT | -0.08M | -5.61M | -37.78M | -134.32M | -166.24M | -26.76M |
| Non-operating items | ||||||
| Non Operating Interest Expenses | 0.68M | -0.01M | -4.40M | -2.35M | -0.95M | |
| Other Non Operating IncomeOther Non Op Inc. | -309.05M | -3.28M | -24.80M | |||
| Non Operating IncomeNon Op. Inc. | -0.68M | -309.04M | 1.12M | -22.45M | 0.95M | |
| Net income details | ||||||
| EBT | -0.08M | -6.29M | -37.76M | -129.91M | -163.90M | -25.81M |
| Profit After TaxPAT | -0.08M | -6.29M | -390.20M | -89.81M | -188.69M | -25.81M |
| Income from Continuing OperationsIncome (Continuing) | -0.08M | -6.29M | -37.76M | -129.91M | -163.90M | -25.81M |
| Consolidated Net IncomeConsol Net Inc. | -0.08M | -6.29M | -37.76M | -129.91M | -163.90M | -25.81M |
| Income towards Parent CompanyParent Net Inc | -0.08M | -6.29M | -37.76M | -129.91M | -163.90M | -25.81M |
| Net Income towards Common StockholdersNet Income | -0.08M | -6.29M | -390.20M | -129.91M | -163.90M | -25.81M |
| Additional items | ||||||
| EPS (Basic) | 0.00 | -0.02 | -0.84 | -0.28 | -0.26 | -0.04 |
| EPS (Diluted) | 0.00 | -0.02 | -0.84 | -0.28 | -0.26 | -0.04 |
| Shares Outstanding | 73.69M | 408.98M | 466.49M | 467.96M | 629.84M | 637.33M |
| Shares Outstanding (Diluted)Shares Outstanding (Dil.) | 73.69M | 408.98M | 466.49M | 467.96M | 629.84M | 637.33M |
| Shares Outstanding (Entity)Shares Outstanding (Entity.) | 418.03M | 359.26M | 466.49M | 467.96M | 629.84M | 638.12M |
| EBITDA | -0.08M | -5.61M | -37.78M | -134.32M | -166.24M | -26.76M |
| Interest ExpensesInt Expense | 0.68M | -0.01M | -4.40M | -2.35M | -0.95M |
Pull Fermi's standardized financial statements into your own models, spreadsheets and apps with the Business Quant Financial Statements API. The request below follows the statement, frequency and period selected above. Swap YOUR_API_KEY for your own key.
https://data.businessquant.com/statements?ticker=FRMI&statement=IS&frequency=Quarter&period=all&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/statements"
params = {"ticker": "FRMI", "statement": "IS", "frequency": "Quarter", "period": "all", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/statements?ticker=FRMI&statement=IS&frequency=Quarter&period=all&api_key=YOUR_API_KEY");
const data = await res.json();