Cingulate ratios data for the quarter ended Jun 2026. These financial ratios cover 16 quarters of results from Mar 2022 through Jun 2026, standardized by Business Quant from the company’s SEC filings.
| Ratios | Mar2022 | Jun2022 | Sep2022 | Dec2022 | Mar2023 | Jun2023 | Sep2023 | Dec2023 | Mar2024 | Jun2024 | Sep2024 | Dec2024 | Mar2025 | Sep2025 | Dec2025 | Jun2026 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Efficiency | ||||||||||||||||
| Assets AverageAssets Avg. | 20.66M | 16.12M | 14.59M | 13.39M | 9.28M | 6.20M | 5.55M | 4.68M | 4.49M | 5.31M | 9.35M | 14.22M | 13.67M | 12.80M | 24.07M | |
| Invested CapitalInvested Cap. | 13.37M | 8.88M | 5.08M | 1.90M | 5.00M | -1.77M | 12.42M | 10.98M | 6.66M | 9.96M | 28.53M | |||||
| Leverage & Solvency | ||||||||||||||||
| Debt Ratio | 0.33 | 0.44 | 0.70 | 1.53 | 0.87 | 1.46 | 0.33 | 0.40 | 0.30 | 0.49 | 0.15 | |||||
| Return Ratios | ||||||||||||||||
| Return on Capital Employed [ROCE]ROCE | -128.01% | -177.59% | -191.51% | -274.40% | -622.45% | 388.69% | 11,132.54% | 410.45% | -972.42% | -572.33% | -207.83% | -169.13% | -203.71% | -802.84% | -140.21% | |
| Return on Invested Capital [ROIC]ROIC | -124.29% | -184.76% | -421.80% | -467.32% | -1,112.19% | -110.47% | -189.61% | -88.86% | ||||||||
| Return on Assets [ROA]ROA | -112.97% | -155.72% | -89.04% | -104.28% | -141.79% | -245.34% | -301.70% | -397.33% | -396.59% | -284.17% | -145.69% | -91.87% | -100.14% | -138.30% | -80.31% |
Pull Cingulate'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=CING&statement=Ratios&frequency=Quarter&period=all&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/statements"
params = {"ticker": "CING", "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=CING&statement=Ratios&frequency=Quarter&period=all&api_key=YOUR_API_KEY");
const data = await res.json();