FinOpsForge — Independent cloud cost reviews. No vendor sponsorships. No paid rankings.

AWS Cost Explorer: Full Guide for FinOps Teams (2026)

// Jan 2026 // 11 min read // independently tested

AWS Cost Explorer is the starting point for every cloud cost investigation — and most teams use only 20% of its capabilities. This guide covers the full feature set: from basic cost visualization to programmatic API access for custom dashboards.

// Affiliate disclosure: FinOpsForge may earn a commission if you sign up via links on this page. This never affects our ratings or editorial independence. We test tools on real cloud workloads.

Enabling Cost Explorer

Cost Explorer is free to enable but charges $0.01 per API request. Enable it in Billing & Cost Management → Cost Explorer. Historical data populates for the last 12 months. Allow 24 hours for initial data processing.

Enable Cost Anomaly Detection immediately — it's free and will catch unusual spending spikes automatically. Set a threshold of $100+ daily change to avoid alert fatigue.

Effective Grouping & Filtering

The default "Monthly costs by service" view is a starting point, not a destination. Most useful grouping strategies:

  • Group by Tag (Team/Project): Requires consistent tagging. Shows cost by business unit.
  • Group by Usage Type: Reveals what you're actually paying for (DataTransfer-Out, BoxUsage, etc.)
  • Group by Purchase Option: Shows on-demand vs Reserved vs Spot split — critical for commitment planning
  • Filter to EC2, then group by Instance Type: Identifies your biggest compute spenders

Cost Anomaly Detection

Cost Anomaly Detection uses ML to identify unusual spending patterns. Configure monitors by: service (separate alerts per service), linked account, cost category, or tag. Set alert threshold as either % change or absolute $ amount. For most teams: 20% + $500 minimum is a good starting threshold.

Rightsizing Recommendations

Cost Explorer's rightsizing feature analyzes 14 days of CloudWatch metrics and recommends instance downsizes or terminations. Enable "Include member accounts" in Organizations. Filter recommendations by region and instance family. The "Potential monthly savings" column is conservative — actual savings are usually higher once you test the recommendation.

RI and Savings Plan Coverage Reports

The RI Utilization report shows whether your reserved capacity is being used. Below 80% utilization = you over-committed. The Coverage report shows what percentage of your eligible spend is covered by commitments. Target: 70–80% coverage (leaving 20–30% for variable/Spot workloads).

Cost Explorer API for Custom Dashboards

# Get monthly costs grouped by service - Python example import boto3 ce = boto3.client('ce', region_name='us-east-1') response = ce.get_cost_and_usage( TimePeriod={'Start': '2026-01-01', 'End': '2026-01-31'}, Granularity: 'MONTHLY', GroupBy: [{'Type': 'DIMENSION', 'Key': 'SERVICE'}], Metrics: ['UnblendedCost'] )

// FAQ

Is AWS Cost Explorer enough or do I need a third-party tool?
Cost Explorer handles visibility well up to ~$100K/month. Above that, the lack of automated optimization, weak multi-account support, and limited alerting makes third-party tools (CloudHealth, Datadog, Harness) increasingly valuable.

Get Started

Compare features, pricing, and real-world savings data.

Visit Site →

// related guides