Aurelion cash flow statement data for the quarter ended Jun 2026. This cash flow statement covers 7 quarters of results from Mar 2024 through Jun 2026, standardized by Business Quant from the company’s SEC filings.
| Cash Flow Statement | Mar2024 | Mar2025 | Jun2025 | Sep2025 | Dec2025 | Mar2026 | Jun2026 |
|---|---|---|---|---|---|---|---|
| Operating Activities | |||||||
| Net Income | -2971.45B | -1646.46B | 5,380.56B | 8,709.54B | 7,943.76B | -25063.84B | |
| Misc. | |||||||
| Beginning Cash Balance | 0.00B | 0.00B |
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=CF&frequency=Quarter&period=all&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/statements"
params = {"ticker": "AURE", "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=AURE&statement=CF&frequency=Quarter&period=all&api_key=YOUR_API_KEY");
const data = await res.json();