Cellyan Biotechnology cash flow statement data for the quarter ended Sep 2024. This cash flow statement covers 2 quarters of results from Mar 2024 through Sep 2024, standardized by Business Quant from the company’s SEC filings.
| Cash Flow Statement | Mar2024 | Sep2024 |
|---|---|---|
| Operating Activities | ||
| Depreciation, Depletion & Amortization | ||
| Amortizatization of IntangiblesAmort. of Intangibles | 10,173.00 | 18,641.00 |
Pull Cellyan Biotechnology'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=HKPD&statement=CF&frequency=Quarter&period=all&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/statements"
params = {"ticker": "HKPD", "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=HKPD&statement=CF&frequency=Quarter&period=all&api_key=YOUR_API_KEY");
const data = await res.json();