Closed Beta - Private Access

Git diff for your cloud bill

Analyze Terraform plans and receive cost impact reports directly in your Pull Requests. Built for FinOps and DevOps teams.

Get Started Now

Everything you need to control costs

🏗️

Terraform Parser

Intercepts native tfplan JSON to extract resource changes with military precision.

🧠

AI Optimization

Hybrid async AI suggests rightsizing and modernization strategies to save up to 40%.

📊

FinOps Dashboard

Visual history of all cost impacts over time. Glassmorphic UI with interactive trends.

GitHub Action Integration

Automate cost reporting in your CI/CD pipeline

name: CostDiff Analysis
on: [pull_request]

jobs:
  analyze:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: Terraform Plan
        run: terraform plan -out=tfplan && terraform show -json tfplan > plan.json
      - name: CostDiff API
        run: |
          curl -X POST https://api.costdiff.io/v1/analyze \
            -H "X-API-Key: ${{ secrets.COSTDIFF_API_KEY }}" \
            -d @plan.json