Agomab Therapeutics ratios data for the quarter ended Jun 2026. These financial ratios cover 2 quarters of results from Dec 2025 through Jun 2026, standardized by Business Quant from the company’s SEC filings.
| Ratios | Dec2025 | Jun2026 |
|---|---|---|
| Efficiency | ||
| Assets AverageAssets Avg. | 199.72M | 258.54M |
| Invested CapitalInvested Cap. | 159.97M | 316.29M |
| Leverage & Solvency | ||
| Debt Ratio | 0.04 | 0.02 |
| Valuation | ||
| Price to BookP/B | 1.44 | |
| Enterprise Value | 185.91M | |
| Market Capitalization | 443.49M |
Pull Agomab Therapeutics'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=AGMB&statement=Ratios&frequency=Quarter&period=all&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/statements"
params = {"ticker": "AGMB", "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=AGMB&statement=Ratios&frequency=Quarter&period=all&api_key=YOUR_API_KEY");
const data = await res.json();