Cost Analytics
Track your GPU spending and see exactly how much Pulserun saves you.
Spending Overview
The analytics page shows:
- Total Spent — Over selected period (7d, 30d, 90d)
- Total Hours — GPU compute hours used
- Savings vs Single Provider — Dollar amount and percentage saved
Breakdown Views
By GPU Type
See which GPU types consume the most budget:
| GPU | Hours | Cost |
|---|---|---|
| A100 80GB | 120 hrs | $114.00 |
| RTX 4090 | 65 hrs | $28.50 |
By Provider
See which providers served your workloads:
| Provider | Hours | Cost |
|---|---|---|
| Vast.ai | 140 hrs | $98.20 |
| RunPod | 45 hrs | $44.30 |
Daily Breakdown
Interactive chart showing daily spend with hover details.
API Access
curl https://api.pulserun.dev/v1/analytics/spending?period=30d \
-H "Authorization: Bearer pr_live_xxxxxxxxxxxxx"{
"period": "30d",
"total_spent": 142.50,
"total_hours": 185.2,
"savings_vs_single_provider": 48.30,
"savings_percentage": 25,
"by_gpu": [
{ "gpu": "A100 80GB", "hours": 120, "cost": 114.00 },
{ "gpu": "RTX 4090", "hours": 65.2, "cost": 28.50 }
]
}