Cingulate growth metrics data for the quarter ended Jun 2026. These growth metrics cover 14 quarters of results from Jun 2022 through Jun 2026, standardized by Business Quant from the company’s SEC filings.
| Growth Metrics | Jun2022 | Sep2022 | Dec2022 | Mar2023 | Jun2023 | Sep2023 | Dec2023 | Mar2024 | Jun2024 | Sep2024 | Dec2024 | Mar2025 | Dec2025 | Jun2026 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Growth Ratios | ||||||||||||||
| Return on Assets [ROA] Growth (1y)ROA Growth (1y) | -0.00M | -0.01M | -0.02M | -0.03M | -0.03M | -0.00M | 0.02M | 0.03M | 0.03M | -0.00M | ||||
| Return on Assets [ROA] Growth (3y)ROA Growth (3y) | 0.00M | -0.00M | 0.02M | |||||||||||
| Return on Assets [ROA] (QoQ)ROA (QoQ) | -0.00M | 0.01M | -0.00M | -0.00M | -0.01M | -0.01M | -0.01M | 74.00 | 0.01M | 0.01M | 0.01M | -827.00 | ||
| Return on Capital Employed [ROCE] Growth (1y)ROCE Growth (1y) | -0.05M | 0.06M | 1.13M | 0.07M | -0.03M | -0.10M | -1.13M | -0.06M | 0.08M | -0.06M | ||||
| Return on Capital Employed [ROCE] Growth (3y)ROCE Growth (3y) | -0.01M | -0.05M | -0.05M | |||||||||||
| Return on Capital Employed [ROCE] (QoQ)ROCE (QoQ) | -0.00M | -0.00M | -0.01M | -0.03M | 0.10M | 1.07M | -1.07M | -0.14M | 0.04M | 0.04M | 0.00M | -0.00M | ||
| Return on Invested Capital [ROIC] Growth (1y)ROIC Growth (1y) | -0.10M | |||||||||||||
| Return on Invested Capital [ROIC] Growth (3y)ROIC Growth (3y) | -0.01M | 0.03M | ||||||||||||
| Return on Invested Capital [ROIC] (QoQ)ROIC (QoQ) | -0.01M | -0.02M | -0.00M | -0.06M |
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=Growth&frequency=Quarter&period=all&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/statements"
params = {"ticker": "CING", "statement": "Growth", "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=Growth&frequency=Quarter&period=all&api_key=YOUR_API_KEY");
const data = await res.json();