Guardian Metal Resources income statement data for the quarter ended Jun 2026. This income statement covers 2 quarters of results from Jun 2025 through Jun 2026, standardized by Business Quant from the company’s SEC filings.
| Income Statement | Jun2025 | Jun2026 |
|---|---|---|
| Shares Outstanding (Entity)Shares Outstanding (Entity.) | 27.89M | 57.79M |
| Additional items | ||
| Shares Outstanding | 24.79M | 57.79M |
| Shares Outstanding (Diluted)Shares Outstanding (Dil.) | 24.79M | 57.79M |
Pull Guardian Metal Resources'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=GMTL&statement=IS&frequency=Quarter&period=all&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/statements"
params = {"ticker": "GMTL", "statement": "IS", "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=GMTL&statement=IS&frequency=Quarter&period=all&api_key=YOUR_API_KEY");
const data = await res.json();