Gibo Holdings reported asset growth of -99.26% for the quarter ended Dec 2025. These growth metrics cover 2 quarters of results from Dec 2024 through Dec 2025, standardized by Business Quant from the company’s SEC filings.
| Growth Metrics | Dec2024 | Dec2025 |
|---|---|---|
| Growth Ratios | ||
| Assets Growth (1y) | 1,407.48% | -99.26% |
| Cash & Equivalents Growth (1y)Cash & Equiv. Growth (1y) | -98.57% | 364.25% |
| Property, Plant & Equipment (Net) Growth (1y)PP&E (Net) Growth (1y) | 586,419.82% | |
| Total Debt Growth (1y) | 2,922.95% | 2,400.75% |
Pull Gibo Holdings'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=GIBO&statement=Growth&frequency=Quarter&period=all&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/statements"
params = {"ticker": "GIBO", "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=GIBO&statement=Growth&frequency=Quarter&period=all&api_key=YOUR_API_KEY");
const data = await res.json();