Fermi reported cash from operations of -$48.67M and free cash flow of -$233.64M for the quarter ended Jun 2026. This cash flow statement covers 6 quarters of results from Mar 2025 through Jun 2026, standardized by Business Quant from the company’s SEC filings.
| Cash Flow Statement | Mar2025 | Jun2025 | Sep2025 | Dec2025 | Mar2026 | Jun2026 |
|---|---|---|---|---|---|---|
| Operating Activities | ||||||
| Net Income | -0.08M | -6.29M | -37.76M | -129.91M | -163.90M | -25.81M |
| Share-based CompensationStock Comp. | 0.00M | 24.81M | 107.93M | 133.98M | 5.00M | |
| Cash from OperationsCash from Ops. | -0.05M | -2.57M | -5.67M | -25.86M | -7.34M | -48.67M |
| Change in Working Capital | ||||||
| Change in Accured ExpensesChange Accured Exp. | 0.03M | 1.31M | 9.46M | 4.20M | 29.29M | 6.20M |
| Investing Activities | ||||||
| Capital ExpendituresCapex | 0.03M | 40.28M | 48.72M | 480.27M | 441.19M | 184.97M |
| Cash from Investing ActivitiesCash from Investing | -0.03M | -42.84M | -53.45M | -473.94M | -441.19M | -184.97M |
| Financing Activities | ||||||
| Other financing activitiesOther financing | 0.30M | 744.71M | 0.88M | -0.88M | ||
| Cash from Financing ActivitiesCash from Financing | 0.30M | 85.53M | 201.78M | 725.34M | 283.30M | 82.08M |
| Additional items | ||||||
| Change in Cash | 0.22M | 40.11M | 142.66M | 225.54M | -165.24M | -151.56M |
| Free Cash FlowFCF | -0.08M | -42.85M | -54.39M | -506.13M | -448.53M | -233.64M |
| Net Cash FlowNCF | 0.22M | 40.11M | 142.66M | 225.54M | -165.24M | -151.56M |
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=CF&frequency=Quarter&period=all&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/statements"
params = {"ticker": "FRMI", "statement": "CF", "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=CF&frequency=Quarter&period=all&api_key=YOUR_API_KEY");
const data = await res.json();