✓ Verified 🌐 Web Scrapers ✓ Enhanced Data

Claude Usage Cli

Query Claude API usage and cost reports from the command line.

Rating
4.1 (311 reviews)
Downloads
9,763 downloads
Version
1.0.0

Overview

Query Claude API usage and cost reports from the command line.

Complete Documentation

View Source →

claude-usage-cli

⚠️ DEPRECATED — This skill is no longer maintained. Please use claude-cost-cli instead, which provides the same functionality with active support.


A CLI for querying Anthropic Admin API usage and cost data. Requires an Admin API key (sk-ant-admin...) from Claude Console → Settings → Admin Keys. Credentials are stored in macOS Keychain.

Installation

Requires Node.js >= 18 and macOS. The package is open source: https://github.com/cyberash-dev/claude-usage-cli

bash
npm install -g claude-usage-cli

Install from source (if you prefer to audit the code before running):

bash
git clone https://github.com/cyberash-dev/claude-usage-cli.git
cd claude-usage-cli
npm install && npm run build && npm link

After installation the claude-usage command is available globally.

Quick Start

bash
claude-usage config set-key     # Interactive prompt: enter Admin API key (masked)
claude-usage usage              # Token usage for the last 7 days
claude-usage cost               # Cost breakdown for the last 7 days
claude-usage cost --sum         # Total spend for the last 7 days

API Key Management

Store API key (interactive masked prompt, validates sk-ant-admin prefix):

bash
claude-usage config set-key

Show stored key (masked):

bash
claude-usage config show

Remove key from Keychain:

bash
claude-usage config remove-key

Usage Reports

bash
claude-usage usage                                    # Last 7 days, daily, grouped by model
claude-usage usage --period 30d                       # Last 30 days
claude-usage usage --from 2026-01-01 --to 2026-01-31 # Custom date range
claude-usage usage --model claude-sonnet-4            # Filter by model
claude-usage usage --api-keys apikey_01Rj,apikey_02Xz # Filter by API key IDs
claude-usage usage --group-by model,api_key_id        # Group by multiple dimensions
claude-usage usage --bucket 1h                        # Hourly granularity (1d, 1h, 1m)

JSON output (for scripting):

bash
claude-usage usage --json
claude-usage usage --period 30d --json

Output columns: Date, Model, Input Tokens, Cached Tokens, Output Tokens, Web Searches.

Cost Reports

bash
claude-usage cost                                           # Last 7 days, grouped by description
claude-usage cost --period 30d                              # Last 30 days
claude-usage cost --from 2026-01-01 --to 2026-01-31        # Custom date range
claude-usage cost --group-by workspace_id,description       # Group by workspace and description
claude-usage cost --sum                                     # Total cost only

JSON output (for scripting):

bash
claude-usage cost --json
claude-usage cost --sum --json

Output columns: Date, Description, Model, Amount (USD), Token Type, Tier.

Flag Reference

usage

FlagDescriptionDefault
--from Start date (YYYY-MM-DD or ISO)7 days ago
--to End date (YYYY-MM-DD or ISO)now
--period Shorthand period (7d, 30d, 90d)7d
--model Filter by model(s), comma-separatedall
--api-keys Filter by API key ID(s), comma-separatedall
--group-by Group by model, api_key_id, workspace_id, service_tiermodel
--bucket Bucket width: 1d, 1h, 1m1d
--jsonOutput as JSONfalse

cost

FlagDescriptionDefault
--from Start date (YYYY-MM-DD or ISO)7 days ago
--to End date (YYYY-MM-DD or ISO)now
--period Shorthand period (7d, 30d, 90d)7d
--group-by Group by workspace_id, descriptiondescription
--sumOutput total cost onlyfalse
--jsonOutput as JSONfalse

Security and Data Storage

  • Admin API key: stored exclusively in macOS Keychain (service: claude-usage-cli). Never written to disk in plaintext.
  • No config files: all settings are passed via CLI flags. Nothing is stored on disk besides the Keychain entry.
  • Network: the API key is only sent to api.anthropic.com over HTTPS. No other outbound connections are made.
  • Scope: the Admin API key grants read-only access to organization usage and cost data. It cannot modify billing, create API keys, or access conversation content.
  • No caching: query results are not cached or persisted to disk.

API Reference

This CLI wraps the Anthropic Admin API:

  • Usage: GET /v1/organizations/usage_report/messages
  • Cost: GET /v1/organizations/cost_report
Documentation: https://platform.claude.com/docs/en/build-with-claude/usage-cost-api

Installation

Terminal bash

openclaw install claude-usage-cli
    
Copied!

💻Code Examples

npm install && npm run build && npm link

npm-install--npm-run-build--npm-link.txt
After installation the `claude-usage` command is available globally.

## Quick Start

claude-usage cost --sum # Total spend for the last 7 days

claude-usage-cost---sum--total-spend-for-the-last-7-days.txt
## API Key Management

Store API key (interactive masked prompt, validates `sk-ant-admin` prefix):

claude-usage usage --period 30d --json

claude-usage-usage---period-30d---json.txt
Output columns: Date, Model, Input Tokens, Cached Tokens, Output Tokens, Web Searches.

## Cost Reports
example.sh
git clone https://github.com/cyberash-dev/claude-usage-cli.git
cd claude-usage-cli
npm install && npm run build && npm link
example.sh
claude-usage config set-key     # Interactive prompt: enter Admin API key (masked)
claude-usage usage              # Token usage for the last 7 days
claude-usage cost               # Cost breakdown for the last 7 days
claude-usage cost --sum         # Total spend for the last 7 days
example.sh
claude-usage usage                                    # Last 7 days, daily, grouped by model
claude-usage usage --period 30d                       # Last 30 days
claude-usage usage --from 2026-01-01 --to 2026-01-31 # Custom date range
claude-usage usage --model claude-sonnet-4            # Filter by model
claude-usage usage --api-keys apikey_01Rj,apikey_02Xz # Filter by API key IDs
claude-usage usage --group-by model,api_key_id        # Group by multiple dimensions
claude-usage usage --bucket 1h                        # Hourly granularity (1d, 1h, 1m)
example.sh
claude-usage cost                                           # Last 7 days, grouped by description
claude-usage cost --period 30d                              # Last 30 days
claude-usage cost --from 2026-01-01 --to 2026-01-31        # Custom date range
claude-usage cost --group-by workspace_id,description       # Group by workspace and description
claude-usage cost --sum                                     # Total cost only

Tags

#browser_and-automation #api #cli

Quick Info

Category Web Scrapers
Model Claude 3.5
Complexity One-Click
Author cyberash-dev
Last Updated 3/10/2026
🚀
Optimized for
Claude 3.5
🧠

Ready to Install?

Get started with this skill in seconds

openclaw install claude-usage-cli