Live Examples

Try it now

Copy any URL below into TailStats and see live data instantly. Values change on every refresh.

Live API Examples

Real endpoints returning dynamic JSON. Each showcases different card types, layouts, and use cases.

DevOps Monitoring

2 columns

Server status, CPU, memory, disk usage, network I/O, uptime, connections, and error rates.

progress sparkline status
https://www.tailstats.com/example1.json
Menu bar: 💻 CPU

SaaS Metrics

3 columns

MRR, active users, churn rate, new signups, trial conversion, and revenue trends.

currency percent compact
https://www.tailstats.com/example2.json
Menu bar: 💰 MRR

E-commerce

1 column

Orders, revenue, avg order value, conversion rate, cart abandonment, inventory status.

currency alerts trends
https://www.tailstats.com/example3.json
Menu bar: 🛍️ Orders

Social Media

1 column

Followers, engagement rate, views, likes, comments, and shares for content creators.

compact sparkline percent
https://www.tailstats.com/example4.json
Menu bar: 👥 Followers

Smart Home / IoT

3 columns

Temperature, humidity, air quality, energy usage, lights, thermostat, and door locks.

sensors status sparkline
https://www.tailstats.com/example5.json
Menu bar: 🌡️ Temperature

AI Agent Tracking

2 columns

Claude Code sessions, tokens used, API costs, usage trends, rate limits, and status.

currency compact progress
https://www.tailstats.com/example6.json
Menu bar: 🤖 Claude Code

Quick Start

Get up and running in seconds

1

Download

Get TailStats from the Mac App Store

2

Copy URL

Copy any example endpoint above

3

Paste & Go

Add to TailStats and see live data

Command Line

CLI Examples

Push data from scripts, cron jobs, or the terminal. Perfect for automation.

tailstats push

Push data to a card

Simple value:

$ tailstats push "Deploy" "Success"

With color and icon:

$ tailstats push "Build" "Passing" --color green --icon checkmark.circle.fill

Full JSON payload:

$ tailstats push --json '{"title":"Revenue","value":12450,"emoji":"💰"}'

tailstats notify

Send system notifications

Simple notification:

$ tailstats notify "Build completed successfully!"

With title:

$ tailstats notify --title "Deploy" "Production deploy finished"

With sound:

$ tailstats notify --sound "Alert: Server CPU > 90%"

End of long script:

# Run at end of long task
npm run build && tailstats notify "Build done!"

Install the CLI

One-line install for macOS

$ curl -fsSL https://www.tailstats.com/install | sh
Local Server

HTTP Push

TailStats runs a local server on port 9876. Push data with a simple HTTP request.

$ curl localhost:9876/push \
-H "Content-Type: application/json" \
-d '{"title":"Status","value":"OK","emoji":"✅"}'

Ready to try it?

Download TailStats and paste any example URL to see it in action.