Default list prices
Below are the default list prices (in USD per Million Tokens) configured on the platform.The
claude-sonnet-5 rate is promotional and is subject to change.Default fallback rate
If a model name is not recognized or does not match any of the custom tiers above, the system logs a warning and falls back to the default list rate (matching the Claude Sonnet 4.6 tier). The Models breakdown table displays a warning indicator next to the model name to signal that the spend is an estimate.- Input: $3.00 per Million
- Output: $15.00 per Million
- Cache Read: $0.30 per Million
- Cache Write: $3.75 per Million
Prompt caching dynamics
To provide highly accurate cost accounting, prompt caching is calculated uniquely per provider:- Anthropic / OpenAI: Prompt cache write tokens are priced at a premium rate (
cache_write/cache_create), and subsequent hits are charged at a heavily discountedcache_readrate. - Google Gemini: Google structures prompt caching differently, billing cache storage per hour rather than a per-token write rate. As a result,
cache_write_tokensare priced at $0.00 (cache_create: 0.0), whilecache_read_tokensrepresent the discounted input rate. - Double-charging prevention: To prevent double-charging, the platform’s query layers automatically deduct any
cache_read_tokensfrom the billableinput_tokenscount on each LLM call before applying the pricing rates. Thus, the calculation always evaluates asbillable_input = max(input_tokens - cache_read_tokens, 0).