Iczoom cash flow statement data for the quarter ended Jun 2024. This cash flow statement covers 4 quarters of results from Jun 2021 through Jun 2024, standardized by Business Quant from the company’s SEC filings.
| Cash Flow Statement | Jun2021 | Jun2022 | Jun2023 | Jun2024 |
|---|---|---|---|---|
| Operating Activities | ||||
| Net Income | -216150.00 | |||
| Share-based CompensationStock Comp. | 960,174.00 | 751,012.00 | 742,762.00 | 730,637.00 |
| Cash from OperationsCash from Ops. | -3940.00 | |||
| Change in Working Capital | ||||
| Change in Accured ExpensesChange Accured Exp. | 216,478.00 | |||
| Investing Activities | ||||
| Capital ExpendituresCapex | 1,421.00 | |||
| Financing Activities | ||||
| Change in Capital Stock | ||||
| Net Shares Issued and RepurchasedNet Shares Issued | 209,162.00 | 8,250.00 | 12,125.00 | |
| Additional items | ||||
| Change in Cash | -3425.00 | |||
| Free Cash FlowFCF | -5361.00 | |||
| Net Cash FlowNCF | -3940.00 |
Pull Iczoom'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=IZM&statement=CF&frequency=Quarter&period=all&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/statements"
params = {"ticker": "IZM", "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=IZM&statement=CF&frequency=Quarter&period=all&api_key=YOUR_API_KEY");
const data = await res.json();