zSpace reported a gross margin of 56.41% and a net margin of 5.34% for the quarter ended Jun 2026. These financial ratios cover 10 quarters of results from Mar 2024 through Jun 2026, standardized by Business Quant from the company’s SEC filings.
| Ratios | Mar2024 | Jun2024 | Sep2024 | Dec2024 | Mar2025 | Jun2025 | Sep2025 | Dec2025 | Mar2026 | Jun2026 |
|---|---|---|---|---|---|---|---|---|---|---|
| Profitability | ||||||||||
| Gross Margin | 34.46% | 40.42% | 44.74% | 40.68% | 47.43% | 42.55% | 51.17% | 49.14% | 53.08% | 56.41% |
| EBT Margin | -156.26% | -62.73% | -1.43% | -42.48% | -86.26% | -81.66% | -70.17% | -150.26% | -124.87% | 5.50% |
| EBIT Margin | -145.25% | -47.03% | 0.17% | -32.38% | -79.66% | -84.85% | -54.52% | -116.24% | -74.88% | -47.02% |
| EBITDA Margin | -144.97% | -46.75% | 0.27% | -32.22% | -79.39% | -84.27% | -54.50% | -115.97% | -74.82% | -46.96% |
| Operating Margin | -145.25% | -47.03% | 0.17% | -32.38% | -79.66% | -84.85% | -54.52% | -116.24% | -74.88% | -47.02% |
| Net Margin | -157.25% | -64.35% | -1.43% | -42.48% | -86.28% | -81.81% | -70.16% | -150.30% | -124.87% | 5.34% |
| FCF Margin | -69.05% | -3.81% | 12.65% | -58.64% | -68.66% | -93.30% | -27.65% | -82.11% | -57.57% | -36.73% |
| Efficiency | ||||||||||
| Inventory AverageInventory Avg. | 2.61M | 2.29M | 2.47M | 2.38M | 2.22M | 2.01M | ||||
| Assets AverageAssets Avg. | 11.69M | 10.99M | 12.80M | 10.52M | 9.03M | 9.38M | ||||
| Equity AverageEquity Avg. | -137.70M | -118.31M | -55.65M | -17.15M | -20.96M | -21.00M | -21.10M | -23.94M | -19.28M | |
| Invested CapitalInvested Cap. | 3.03M | -1.33M | -8.39M | -5.78M | -8.92M | -15.08M | -11.82M | |||
| Asset Utilization RatioAsset Util. | 3.17 | 3.36 | 2.47 | 2.65 | 2.92 | 2.59 | ||||
| Leverage & Solvency | ||||||||||
| Interest Coverage RatioInterest Cover | -15.62 | -3.88 | 0.04 | -4.77 | -10.73 | -21.03 | -15.67 | -15.27 | -11.43 | -10.53 |
| Debt Ratio | 1.31 | 1.86 | 1.15 | 1.03 | 1.79 | 0.98 | 0.16 | |||
| Times Interest Earned | -15.62 | -3.88 | 0.04 | -4.77 | -10.73 | -21.03 | -15.67 | -15.27 | -11.43 | -10.53 |
| Valuation | ||||||||||
| Price to SalesP/S | 18.02 | 4.57 | 2.03 | 20.57 | 10.58 | 0.15 | 0.09 | |||
| Enterprise Value | 681.63M | 168.18M | 73.49M | 644.52M | 293.69M | 1.07M | 1.22M | |||
| Market Capitalization | 686.50M | 169.31M | 74.88M | 648.82M | 294.71M | 3.97M | 2.12M | |||
| Return Ratios | ||||||||||
| Return on Sales [ROS]ROS | -145.25% | -47.03% | 0.17% | -32.38% | -79.66% | -84.85% | -54.52% | -116.24% | -74.88% | -47.02% |
| Return on Invested Capital [ROIC]ROIC | -1,369.33% | |||||||||
| Return on Assets [ROA]ROA | -123.25% | -143.40% | -169.79% | -241.28% | -289.15% | -210.29% |
Pull zSpace'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=ZSPC&statement=Ratios&frequency=Quarter&period=all&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/statements"
params = {"ticker": "ZSPC", "statement": "Ratios", "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=ZSPC&statement=Ratios&frequency=Quarter&period=all&api_key=YOUR_API_KEY");
const data = await res.json();