Command-Line Options
ccusage provides extensive command-line options to customize its behavior. These options take precedence over configuration files and environment variables.
Global Options
All ccusage commands support these global options:
Date Filtering
Filter usage data by date range:
# Filter by date range
ccusage daily --since 20250101 --until 20250630
# Show data from a specific date
ccusage monthly --since 20250101
# Show data up to a specific date
ccusage session --until 20250630
Output Format
Control how data is displayed:
# JSON output for programmatic use
ccusage daily --json
ccusage daily -j
# Show per-model breakdown
ccusage daily --breakdown
ccusage daily -b
# Combine options
ccusage daily --json --breakdown
Cost Calculation Mode
Choose how costs are calculated:
# Auto mode (default) - use costUSD when available
ccusage daily --mode auto
# Calculate mode - always calculate from tokens
ccusage daily --mode calculate
# Display mode - only show pre-calculated costUSD
ccusage daily --mode display
Sort Order
Control the ordering of results:
# Newest first (default)
ccusage daily --order desc
# Oldest first
ccusage daily --order asc
Offline Mode
Run without network connectivity:
# Use cached pricing data
ccusage daily --offline
ccusage daily -O
Timezone
Set the timezone for date calculations:
# Use UTC timezone
ccusage daily --timezone UTC
# Use specific timezone
ccusage daily --timezone America/New_York
ccusage daily -z Asia/Tokyo
# Short alias
ccusage monthly -z Europe/London
Timezone Effect
The timezone affects how usage is grouped by date. For example, usage at 11 PM UTC on January 1st would appear on:
- January 1st when
--timezone UTC
- January 1st when
--timezone America/New_York
(6 PM EST) - January 2nd when
--timezone Asia/Tokyo
(8 AM JST next day)
Locale
Control date and time formatting:
# US English (12-hour time format)
ccusage daily --locale en-US
# Japanese (24-hour time format)
ccusage blocks --locale ja-JP
# German (24-hour time format)
ccusage session -l de-DE
# Short alias
ccusage daily -l fr-FR
Locale Effects
The locale affects display formatting:
Date Format:
en-US
: 08/04/2025en-CA
: 2025-08-04 (ISO format, default)ja-JP
: 2025/08/04de-DE
: 04.08.2025
Time Format:
en-US
: 3:30:00 PM (12-hour)- Others: 15:30:00 (24-hour)
Debug Options
Get detailed debugging information:
# Debug mode - show pricing mismatches and config loading
ccusage daily --debug
# Show sample discrepancies
ccusage daily --debug --debug-samples 10
Configuration File
Use a custom configuration file:
# Specify custom config file
ccusage daily --config ./my-config.json
ccusage monthly --config /path/to/team-config.json
Command-Specific Options
Daily Command
Additional options for daily reports:
# Group by project
ccusage daily --instances
ccusage daily -i
# Filter to specific project
ccusage daily --project myproject
ccusage daily -p myproject
# Combine project filtering
ccusage daily --instances --project myproject
Weekly Command
Options for weekly reports:
# Set week start day
ccusage weekly --start-of-week monday
ccusage weekly --start-of-week sunday
Session Command
Options for session reports:
# Filter by session ID
ccusage session --id abc123-session
# Filter by project
ccusage session --project myproject
Blocks Command
Options for 5-hour billing blocks:
# Show only active block
ccusage blocks --active
ccusage blocks -a
# Show recent blocks (last 3 days)
ccusage blocks --recent
ccusage blocks -r
# Set token limit for warnings
ccusage blocks --token-limit 500000
ccusage blocks --token-limit max
# Live monitoring mode
ccusage blocks --live
ccusage blocks --live --refresh-interval 2
# Customize session length
ccusage blocks --session-length 5
MCP Server
Options for MCP server:
# Default stdio transport
ccusage mcp
# HTTP transport
ccusage mcp --type http --port 8080
# Custom cost mode
ccusage mcp --mode calculate
Statusline
Options for statusline display:
# Basic statusline
ccusage statusline
# Force offline mode
ccusage statusline --offline
# Enable caching
ccusage statusline --cache
# Custom refresh interval
ccusage statusline --refresh-interval 5
JSON Output Options
When using --json
output, additional processing options are available:
# Apply jq filter to JSON output
ccusage daily --json --jq ".data[]"
# Filter high-cost days
ccusage daily --json --jq ".data[] | select(.cost > 10)"
# Extract specific fields
ccusage session --json --jq ".data[] | {date, cost}"
Option Precedence
Options are applied in this order (highest to lowest priority):
- Command-line arguments - Direct CLI options
- Custom config file - Via
--config
flag - Local project config -
.ccusage/ccusage.json
- User config -
~/.config/claude/ccusage.json
- Legacy config -
~/.claude/ccusage.json
- Built-in defaults
Examples
Development Workflow
# Daily development check
ccusage daily --instances --breakdown
# Check specific project costs
ccusage daily --project myapp --since 20250101
# Export for reporting
ccusage monthly --json > monthly-report.json
Team Collaboration
# Use team configuration
ccusage daily --config ./team-config.json
# Consistent timezone for remote team
ccusage daily --timezone UTC --locale en-CA
# Generate shareable report
ccusage weekly --json --jq ".summary"
Cost Monitoring
# Monitor active usage
ccusage blocks --active --live
# Check if approaching limits
ccusage blocks --token-limit 500000
# Historical analysis
ccusage monthly --mode calculate --breakdown
Debugging Issues
# Debug configuration loading
ccusage daily --debug --config ./test-config.json
# Check pricing discrepancies
ccusage daily --debug --debug-samples 20
# Silent mode for scripts
LOG_LEVEL=0 ccusage daily --json
Short Aliases
Many options have short aliases for convenience:
Long Option | Short | Description |
---|---|---|
--json | -j | JSON output |
--breakdown | -b | Per-model breakdown |
--offline | -O | Offline mode |
--timezone | -z | Set timezone |
--locale | -l | Set locale |
--instances | -i | Group by project |
--project | -p | Filter project |
--active | -a | Active block only |
--recent | -r | Recent blocks |
Related Documentation
- Environment Variables - Configure via environment
- Configuration Files - Persistent configuration
- Cost Calculation Modes - Understanding cost modes