Skip to main content
How-To Guides Last updated: 6 March 2026

Subscription usage tracking

Keep tabs on your Claude Code subscription from anywhere — Untether surfaces usage directly in Telegram. This guide covers checking usage on demand and enabl...

Keep tabs on your Claude Code subscription from anywhere — Untether surfaces usage directly in Telegram. This guide covers checking usage on demand and enabling automatic usage footers after every run.

Check usage with /usage

Send /usage in any chat to see a full breakdown of your Claude Code subscription usage:

Untether 5h window: 45% used (resets in 2h 15m) ████████░░░░░░░░░░░░ 45%

**7d window**: 30% used (resets in 4d 3h)

**Sonnet (7d)**: 25% used
**Opus (7d)**: 5% used

**Extra credits**: $0.00

The breakdown includes:

SectionWhat it shows
5h windowPercentage used in the current 5-hour rate limit window, time until reset, and a progress bar
7d windowPercentage used in the 7-day rolling window, time until reset
Sonnet (7d)Sonnet-specific 7-day usage
Opus (7d)Opus-specific 7-day usage
Extra creditsAny overage credits consumed (if applicable)

To show a compact usage summary after every completed Claude Code run, enable the subscription usage footer:

=== “untether config”

```sh
untether config set footer.show_subscription_usage true
```

=== “toml”

```toml title="~/.untether/untether.toml"
[footer]
show_subscription_usage = true
```

When enabled, completed messages include a line like:

5h: 45% (2h 15m) | 7d: 30% (4d 3h)

This tells you how much of your 5-hour and 7-day rate limits you’ve used, and when they reset — all without leaving the chat.

Combine with API cost

By default, Untether shows API token and cost information in the footer (show_api_cost = true). You can show both API cost and subscription usage together:

=== “toml”

```toml title="~/.untether/untether.toml"
[footer]
show_api_cost = true
show_subscription_usage = true
```

Or disable API cost to show only subscription usage:

=== “toml”

```toml title="~/.untether/untether.toml"
[footer]
show_api_cost = false
show_subscription_usage = true
```

Claude Code credentials

The /usage command reads your Claude Code OAuth credentials to fetch live data from the Anthropic API. If you see “No Claude credentials found”, run claude login in your terminal to authenticate.

Credential storage varies by platform:

PlatformStoragePath
LinuxPlain-text file~/.claude/.credentials.json
macOSmacOS KeychainEntry: Claude Code-credentials

Untether checks both locations automatically. If /usage still fails after logging in, verify that the Claude Code CLI is working by running claude directly.

Was this helpful?

Related Articles