Aurelion growth metrics data for the quarter ended Jun 2026. These growth metrics cover 3 quarters of results from Sep 2025 through Jun 2026, standardized by Business Quant from the company’s SEC filings.
| Growth Metrics | Sep2025 | Mar2026 | Jun2026 |
|---|---|---|---|
| Growth Ratios | |||
| EBITDA Margin (QoQ) | -0.01M | ||
| EBIT Margin (QoQ) | -0.01M | ||
| EBT Margin (QoQ) | -0.01M | ||
| Gross Margin (QoQ) | 0.00M | ||
| Net Margin (QoQ) | -0.01M | ||
| Operating Margin (QoQ) | -0.01M | ||
| Return on Assets [ROA] (QoQ)ROA (QoQ) | 55.78M | -1535.28M | |
| Return on Capital Employed [ROCE] (QoQ)ROCE (QoQ) | 85.80M | -1499.18M | |
| Return on Sales [ROS] (QoQ)ROS (QoQ) | -0.01M |
Pull Aurelion'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=AURE&statement=Growth&frequency=Quarter&period=all&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/statements"
params = {"ticker": "AURE", "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=AURE&statement=Growth&frequency=Quarter&period=all&api_key=YOUR_API_KEY");
const data = await res.json();