Cloud API Cost Estimator API
FinOps for AI APIs. Estimate, compare, and budget-alert across 6 providers and 20+ models.
The Problem
Your team uses OpenAI, Anthropic, Google, and AWS Bedrock. Each has different pricing tiers, batch discounts, and caching rates. Tracking burn rate across providers is a spreadsheet nightmare.
OpenAIAnthropicGoogleAWS BedrockMistralDeepSeek
Estimate
Monthly cost breakdown for any provider + model combo
Compare
Rank all models by cost for your exact workload
Budget Alert
Burn rate, days-to-exhaustion, cheaper alternatives
Batch + Cache
Factor in batch API and prompt caching discounts
MCP Ready
JSON-RPC 2.0 for AI agent integration
2026 Pricing
GPT-4.1, Claude Sonnet 4, Gemini 2.5 Pro
Quick Start
curl -X POST https://api.lazy-mac.com/api-cost/api/v1/estimate \
-H "Content-Type: application/json" \
-d '{"provider":"openai","model":"gpt-4.1","requests_per_month":100000,"avg_input_tokens":1000,"avg_output_tokens":500}'
curl -X POST https://api.lazy-mac.com/api-cost/api/v1/compare \
-H "Content-Type: application/json" \
-d '{"requests_per_month":50000,"avg_input_tokens":800,"avg_output_tokens":400,"providers":["openai","anthropic","google"]}'
curl -X POST https://api.lazy-mac.com/api-cost/api/v1/budget-alert \
-H "Content-Type: application/json" \
-d '{"budget_monthly":500,"provider":"anthropic","model":"claude-sonnet-4","requests_per_month":50000,"avg_input_tokens":1000,"avg_output_tokens":800}'