Sunbelt Rentals Holdings reported a gross margin of 40.10% and a net margin of 14.06% for the quarter ended Jul 2026. These financial ratios cover 5 quarters of results from Jan 2025 through Jul 2026, standardized by Business Quant from the company’s SEC filings.
Pull Sunbelt Rentals 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=SUNB&statement=Ratios&frequency=Quarter&period=all&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/statements"
params = {"ticker": "SUNB", "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=SUNB&statement=Ratios&frequency=Quarter&period=all&api_key=YOUR_API_KEY");
const data = await res.json();