ATRenew cash flow statement data for the quarter ended Jun 2026. This cash flow statement covers 26 quarters of results from Dec 2019 through Jun 2026, standardized by Business Quant from the company’s SEC filings.
| Cash Flow Statement | Dec2019 | Jun2020 | Sep2020 | Dec2020 | Mar2021 | Jun2021 | Sep2021 | Dec2021 | Mar2022 | Jun2022 | Sep2022 | Dec2022 | Mar2023 | Jun2023 | Sep2023 | Dec2023 | Mar2024 | Jun2024 | Sep2024 | Dec2024 | Mar2025 | Jun2025 | Sep2025 | Dec2025 | Mar2026 | Jun2026 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Operating Activities | ||||||||||||||||||||||||||
| Net Income | -26.00M | -40.96M | -29.31M | -22.72M | -8.12M | -332.58M | -10.61M | -9.21M | -4.64M | -9.53M | -12.89M | -1.86M | 3.36M | 3.34M | 10.88M | 16.17M | 19.85M | 25.61M | 30.38M | 30.60M | ||||||
| Share-based CompensationStock Comp. | 2.81M | 2.38M | 1.78M | 1.93M | 1.71M | 1.17M | ||||||||||||||||||||
| Cash from OperationsCash from Ops. | 8.58M | |||||||||||||||||||||||||
| Investing Activities | ||||||||||||||||||||||||||
| Cash from Investing ActivitiesCash from Investing | -49.56M | |||||||||||||||||||||||||
| Financing Activities | ||||||||||||||||||||||||||
| Cash from Financing ActivitiesCash from Financing | 10.67M | |||||||||||||||||||||||||
| Change in Capital Stock | ||||||||||||||||||||||||||
| Net Shares Issued and RepurchasedNet Shares Issued | 0.08M | -30.64M | -22.23M | -25.66M | 0.27M | |||||||||||||||||||||
| Additional items | ||||||||||||||||||||||||||
| Free Cash FlowFCF | 8.58M | |||||||||||||||||||||||||
| Net Cash FlowNCF | -30.30M |
Pull ATRenew'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=RERE&statement=CF&frequency=Quarter&period=all&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/statements"
params = {"ticker": "RERE", "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=RERE&statement=CF&frequency=Quarter&period=all&api_key=YOUR_API_KEY");
const data = await res.json();