$
Platform
Cloud Cost Management
Daily cost rollups by provider and service. Spot wasted spend.
▸ How it works
POST `/v1/cost/records` with `{date, service, cost_usd, provider}`. Funnel rolls up by service, by provider, by tag, and renders a stacked bar over time with anomaly flags (today is X% above the last 7-day average). Pair with `aws-cost-explorer` / `gcp-billing` ETL recipes from the Integrations page.
▸ What this lets you do
- ✓ See AWS + GCP + Azure spend in one chart, broken down by service
- ✓ Catch a runaway service before the bill arrives
- ✓ Anomaly flags when a service jumps >2σ above its baseline
- ✓ Anchor cost to engineering: tag spend by team or project
▸ Get it running
- 1 Run the Integrations recipe for AWS Cost Explorer or GCP Billing daily
- 2 Or POST any cost data you have from internal billing systems
▸ Code examples
curl -X POST https://funnel.example.com/v1/cost/records \
-H "Authorization: Bearer st_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"records": [
{ "date": "2026-05-16", "service": "EC2", "cost_usd": 412.50, "provider": "aws" },
{ "date": "2026-05-16", "service": "S3", "cost_usd": 89.10, "provider": "aws" }
]
}'
Where to find it
/app/p/:org/:project/costs