stats · git:20260911.15f5b03 · 2026-09-11 · sha256 da37371efae7d2fe
stats git:20260911.15f5b03A
Immutable. This exact content is served forever at /api/v1/blob/da37371efae7d2fe.
---
name: stats
description: Show TokenMizer token savings stats — how many tokens saved today, this week, cache hit rate, and which layers are saving the most. Use when user asks about token usage, costs, savings, or "how much have we saved".
---
Show TokenMizer token savings analytics.
## What to do
```bash
curl -s http://localhost:8000/api/stats
```
Then also fetch cache stats:
```bash
curl -s http://localhost:8000/api/cache/stats
```
## Format the output clearly
Show:
- Tokens saved today and this week
- Cost saved in USD
- Cache hit rate
- Which layer saved the most (compression / cache / windowing / file extraction)
- Suggestions if savings are low
## Example output
```
TokenMizer Stats
─────────────────────────
Today: 12,450 tokens saved (34%) — $0.0373
Week: 87,200 tokens saved (31%) — $0.2616
By layer:
File extraction: 45,000 tokens
Semantic cache: 28,000 tokens
Smart window: 9,200 tokens
Compression: 3,800 tokens
Output trim: 1,200 tokens
Cache: 847 entries | 68% hit rate | 8% full
─────────────────────────
Dashboard: http://localhost:8000
```
## If nothing saved yet
Nothing has gone through the proxy yet. Show this, and nothing else:
```python
from openai import OpenAI
client = OpenAI(
api_key="your-key",
base_url="http://localhost:8000/v1"
)
```