Gores Holdings X reported cash from operations of -$0.27M and free cash flow of -$0.27M for the quarter ended Jun 2026. This cash flow statement covers 7 quarters of results from Dec 2024 through Jun 2026, standardized by Business Quant from the company’s SEC filings.
| Cash Flow Statement | Dec2024 | Mar2025 | Jun2025 | Sep2025 | Dec2025 | Mar2026 | Jun2026 |
|---|---|---|---|---|---|---|---|
| Operating Activities | |||||||
| Net Income | -0.05M | 2.13M | 3.37M | -7.30M | 3.01M | 1.88M | |
| Gains from Investment SecuritiesGains Investment | 3.77M | 1.52M | 1.35M | -3.14M | 1.61M | ||
| Cash from OperationsCash from Ops. | -0.00M | -0.11M | -0.63M | -0.19M | -0.27M | ||
| Investing Activities | |||||||
| Cash from Investing ActivitiesCash from Investing | 0.57M | 0.03M | |||||
| Financing Activities | |||||||
| Cash from Financing ActivitiesCash from Financing | 359.65M | 0.47M | |||||
| Additional items | |||||||
| Change in Cash | 0.32M | -0.11M | 0.41M | -0.19M | -0.24M | ||
| Free Cash FlowFCF | -0.00M | -0.11M | -0.63M | -0.19M | -0.27M | ||
| Net Cash FlowNCF | -0.00M | 359.54M | 0.41M | -0.19M | -0.24M |
Pull Gores Holdings X'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=GTEN&statement=CF&frequency=Quarter&period=all&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/statements"
params = {"ticker": "GTEN", "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=GTEN&statement=CF&frequency=Quarter&period=all&api_key=YOUR_API_KEY");
const data = await res.json();