Gibo Holdings ratios data for the quarter ended Dec 2025. These financial ratios cover 4 quarters of results from Dec 2023 through Dec 2025, standardized by Business Quant from the company’s SEC filings.
| Ratios | Dec2023 | Dec2024 | Jun2025 | Dec2025 |
|---|---|---|---|---|
| Efficiency | ||||
| Assets AverageAssets Avg. | 60.14M | 109.13M | 53.15M | |
| Invested CapitalInvested Cap. | 5.85M | 86.33M | 51.38M | -115.13M |
| Leverage & Solvency | ||||
| Debt Ratio | 0.01 | 0.01 | 0.25 | 35.07 |
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=Ratios&frequency=Quarter&period=all&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/statements"
params = {"ticker": "GIBO", "statement": "Ratios", "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=Ratios&frequency=Quarter&period=all&api_key=YOUR_API_KEY");
const data = await res.json();