Conventions
Units & values
Every numeric value carries raw, normalized, and unit metadata.
Every numeric value is returned with both the raw figure and a normalized one, plus the conversion metadata:
"value": {
"raw": 44800000000,
"normalized": 44.8,
"unit": "USD_billion",
"original_unit": "USD",
"conversion_factor": 1e-9
}Pass ?unit=billion|million|thousand|as_reported to control the scale (default
as_reported, where normalized == raw and conversion_factor is 1).
Conversion is magnitude-only. Percentages, per-share values, and ratios are
never scaled — a take rate of 28.4% stays 28.4% regardless of ?unit.