Track every token. Visualize every dollar. Optimize every prompt. A clean, dark-mode usage analytics dashboard for Xiaomi MiMo API developers โ daily, weekly, monthly, and yearly token tracking with cost estimation.
You're hacking with MiMo V2.5 Pro, Reasoner, VL, and TTS across 5 different projects. By Friday, you have no idea:
- How many tokens did I burn today?
- Which model is eating my budget?
- Is my weekly trend going up or down?
- What's my projected monthly cost?
The MiMo Platform shows you raw usage. MiMo Token Orbit shows you the story.
| Feature | Detail |
|---|---|
| ๐ 4-Tier Aggregation | Daily ยท Weekly ยท Monthly ยท Yearly โ switch with one click |
| ๐ธ Cost Estimator | Per-model rate config; defaults match MiMo Platform pricing |
| ๐ฏ Per-Model Breakdown | Doughnut chart: see which model dominates your spend |
| ๐ Trend Chart | Bar chart adapts to selected period (24h hourly ยท 7d daily ยท 30d daily ยท 12m monthly) |
| ๐ Recent Logs Table | Last 30 entries with timestamp, task tag, total, cost |
| ๐พ CSV Export / JSON Import | Move data freely across machines or pipelines |
| ๐ MiMo API Sync (beta) | Direct pull from MiMo Platform โ bring your own key, stored locally only |
| ๐จ Cyberpunk Dark UI | Built for late-night debugging |
| ๐ 100% Local | All data in localStorage โ no backend, no telemetry, no cloud |
| โก Zero Build Step | Just serve index.html. No webpack, no node_modules, no headache. |
git clone https://github.com/kapetot/mimo-token-orbit.git
cd mimo-token-orbit# any static server works
python3 -m http.server 8080
# or
npx serve .http://localhost:8080
That's it. Sample data seeds on first load โ explore, then click Clear All when you're ready to track real usage.
cost_USD = (input_tokens / 1,000,000) ร input_rate
+ (output_tokens / 1,000,000) ร output_rate
Default rates based on MiMo platform pricing snapshot. Edit them in the Pricing Config card.
| Model | Input ($/1M) | Output ($/1M) |
|---|---|---|
| MiMo V2.5 Pro | 0.50 | 2.00 |
| MiMo V2.5 Flash | 0.10 | 0.40 |
| MiMo V2.5 VL | 0.30 | 1.20 |
| MiMo V2.5 TTS | 0.05 | 0.05 |
| MiMo Reasoner | 1.20 | 4.80 |
To pull usage automatically from MiMo Platform:
- Get your API key from platform.xiaomimimo.com
- Paste it into the Live API Sync card
- Click Sync from MiMo Platform
Production Note: Direct browser-to-MiMo calls require a CORS proxy. Recommended pattern:
Browser โ your-cloudflare-worker โ MiMo APIA reference Worker template is provided in
/docs/cf-worker.md.
- Daily / Weekly / Monthly / Yearly aggregation
- Multi-model cost estimator
- CSV export
- JSON import for cross-device sync
- Per-model doughnut chart
- Adaptive trend chart per period
- MiMo Platform live sync (Cloudflare Worker template)
- Multi-team workspace mode
- Budget alerts (notify when projected monthly cost exceeds threshold)
- PWA install (offline-first)
- Telegram bot integration (
/usage today,/cost month) - DuckDB-Wasm for million-row queries
- HTML5 + Vanilla JS โ zero build, zero dependencies in
package.json - Tailwind CSS (CDN) โ utility-first dark cyberpunk theme
- Chart.js 4.4 โ trend bars + model doughnut
- localStorage โ offline-first persistence
PRs welcome. For major changes, open an issue first.
# fork โ branch โ commit โ PR
git checkout -b feat/your-feature
git commit -m "feat: add budget alerts"
git push origin feat/your-featureMIT โ do whatever, just keep the credit.
I'm part of the Xiaomi MiMo Orbit 100T Creator Program โ a 30-day initiative giving 100 trillion free tokens to AI builders worldwide.
When I started racking up usage across MiMo Pro, Reasoner, and VL simultaneously, I realized I had no clean way to see my consumption pattern. The platform dashboard is functional but generic. I wanted something that:
- Speaks to developers โ quick keyboard input, no clicks-to-add
- Shows the story โ not just numbers, but trends
- Stays fast โ single HTML file, no install
- Stays mine โ no telemetry, my data on my machine
So I built MiMo Orbit. If it helps another MiMo dev see their patterns clearer โ mission accomplished.
Built with ๐ฅ for the Xiaomi MiMo community





