Monitor Anthropic Claude Costs
Per Feature, In Real-Time
Get visibility into your Claude API spending. Track costs by feature, monitor token usage, and optimize your Anthropic bill.
The Claude API Billing Challenge
Anthropic's console shows aggregate usage, but doesn't tell you which parts of your app are driving costs.
Sonnet vs Haiku?
Are you using Claude 3.5 Sonnet where Haiku would suffice?
Feature cost breakdown?
Which AI features in your app cost the most to run?
Cost per customer?
Which users are consuming the most Claude tokens?
Feature-Level Claude Cost Tracking
Orbit wraps your Anthropic client and automatically tracks costs for every API call, tagged to the feature that made it.
import { Orbit } from '@with-orbit/sdk';
import Anthropic from '@anthropic-ai/sdk';
const orbit = new Orbit({ apiKey: 'your-orbit-key' });
// Wrap your Anthropic client
const anthropic = orbit.wrapAnthropic(new Anthropic(), {
feature: 'document-analyzer' // Tag by feature
});
// Use Claude normally - costs are tracked automatically
const response = await anthropic.messages.create({
model: 'claude-3-5-sonnet-20241022',
max_tokens: 1024,
messages: [{ role: 'user', content: message }]
});Real-time dashboards
See Claude costs update in real-time as your app runs
Automatic cost calculation
Costs calculated using current Anthropic pricing
Model-level breakdown
See spend by Sonnet, Haiku, and Opus models
Zero code changes
Just wrap your Anthropic client - existing code works as-is
Anthropic Pricing We Track
Orbit automatically calculates costs for all Claude models based on current pricing.
| Model | Input (per 1M) | Output (per 1M) |
|---|---|---|
| Claude 3.5 Sonnet | $3.00 | $15.00 |
| Claude 3.5 Haiku | $0.80 | $4.00 |
| Claude 3 Opus | $15.00 | $75.00 |
| Claude 3 Sonnet | $3.00 | $15.00 |
| Claude 3 Haiku | $0.25 | $1.25 |
Start Monitoring Claude Costs Today
Free tier includes 10,000 events/month. No credit card required.
Get started free