WidgetDash

See your numbers on your iPhone. Any source.

Revenue, signups, server status, crypto, sales, habits: push any number from any service to your iPhone Home Screen, Lock Screen or Dynamic Island with one HTTP request, and stay updated without opening a dashboard. The server does not care what you push. You define it.

Download on the App Store →


See It in Action

Home Screen widgets, Lock Screen widgets, real-time Live Activities, and a setup flow that takes seconds.

WidgetDash home screen widget
WidgetDash app configuration
WidgetDash lock screen widget
Live Activity updating in real time on the Lock Screen

How It Works

Three steps. Nothing to learn.

1

Create Account

Register with a single API call. You get a read key and a write key in return.

2

Push Data

Write a small collector that pulls numbers from your service and sends them to the API.

3

See It

Your data shows up on the widget automatically. Add it to your Home Screen and you are done. On Pro you can even go live: real-time updates on the Lock Screen and Dynamic Island.


Architecture

Decoupled by design. Easy to extend.

Your Services
→
Collector Scripts
→
WidgetDash API
→
iOS Widget

The server is fully generic. It stores whatever you push. Collectors are independent scripts you write and run yourself, so anyone can build one for any service.


Quick Start

Live in minutes. Three commands.

1. Create an account

# Create an account and get your API keys
curl -X POST https://api.widgetdash.app/api/v1/users \
  -H "Content-Type: application/json" \
  -d '{"name": "your-name"}'

2. Push data (use your write key)

curl -X PUT https://api.widgetdash.app/api/v1/data/my-source \
  -H "Authorization: Bearer YOUR_WRITE_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "display_name": "My Service",
    "icon": "chart.bar.fill",
    "category": "monitoring",
    "metrics": [
      {"label": "Users Online", "value": "42", "type": "number", "color": "green"},
      {"label": "Status", "value": "Healthy", "type": "status", "color": "green"}
    ]
  }'

3. Read data (use your read key)

curl https://api.widgetdash.app/api/v1/widget \
  -H "Authorization: Bearer YOUR_READ_KEY"

API Reference

Every endpoint, in one place.

MethodEndpointAuthDescription
POST /api/v1/users None Create account, get API keys
GET /api/v1/users/me Read Get account info
PUT /api/v1/data/{source_key} Write Push data from collector
GET /api/v1/widget Read Get all widget data
GET /api/v1/data/{source_key} Read Get specific source data
POST /api/v1/sources Write Register data source
GET /api/v1/sources Read List data sources
DELETE /api/v1/sources/{source_key} Write Delete data source
GET /health None Health check
GET /api/v1/version None Version info

Metric Types

Every metric carries a type. The type decides how the widget renders it.

number

A large, bold number. Use it for counts, totals, and headline figures.

1,284

text

A plain string. Use it for labels, names, descriptions, or any short value.

us-east-1

status

A colored badge. Ideal for health checks, states, and alerts.

Healthy

progress

A bar for values from 0-100. Great for utilization, quotas, and completion.

72%

Available Colors

green
red
yellow
blue
gray

Writing a Collector

A collector is any script that pushes data to WidgetDash on a schedule.

How collectors work

Tip: Push only when something changes. Hash your payload, compare it to the last push, and skip the write if nothing moved.

Example: Python collector

import httpx, os, time

API_KEY = os.environ["WIDGET_API_KEY"]
SERVER = "https://api.widgetdash.app"

while True:
    # Fetch your data (replace with your own logic)
    users_online = get_users_count()

    httpx.put(f"{SERVER}/api/v1/data/my-app",
        headers={"Authorization": f"Bearer {API_KEY}"},
        json={
            "display_name": "My App",
            "icon": "person.3.fill",
            "category": "app",
            "metrics": [
                {"label": "Online", "value": str(users_online), "type": "number", "color": "green"}
            ]
        })
    time.sleep(60)

Simple, Transparent Pricing

Start free. Upgrade only when you need more.

FREE
$0
forever
  • 5 data sources
  • All widget sizes
  • 15-minute refresh
  • Community support
Get Started
MOST POPULAR
PRO
$4.90
/month or $29.90/year
  • Unlimited data sources
  • All widget sizes
  • 5-minute refresh
  • ⚡ Live Activities (real-time Lock Screen + Dynamic Island)
  • Priority support
Start Free, Upgrade Anytime

Quick Setup

Scan a QR code and the app configures itself.

1

Create Account

Register through the API and get your read and write keys.

2

Scan QR Code

Open the WidgetDash app and scan the code below, or the one on your dashboard.

3

Done

The settings apply at once. Your widgets start showing data right away.

Generate your setup QR code



iOS Widget

Your data at a glance, right on your Home Screen.

1

Download

Get the free WidgetDash app from the App Store (iOS 17.6 or later).

2

Connect

Enter your server URL and read API key in the app settings.

3

Add Widget

Long-press your Home Screen and add the WidgetDash widget. It comes in small, medium, and large sizes.


Frequently Asked Questions

Keeping your numbers in view, answered.

How can I see my numbers on my iPhone?

Install the free WidgetDash app, create an account at widgetdash.app, and send your number with one HTTP request (curl, Python, Zapier, n8n, a cron job, anything that can call an API). Then add the WidgetDash widget to your Home Screen or Lock Screen. The number updates automatically every time you push a new value.

How can I stay updated with my numbers without opening a dashboard?

Put them where you already look: your iPhone Home Screen, Lock Screen, or a Live Activity. WidgetDash turns any metric you push (revenue, signups, server status, crypto, sales, habits) into a native iOS widget, so you see the latest value every time you unlock your phone.

Can I show data from my own API, database or spreadsheet on an iPhone widget?

Yes. WidgetDash is source-agnostic. You compute the number wherever it lives and PUT it to https://api.widgetdash.app/api/v1/data/{source_key} with your write key. There is no SDK and WidgetDash never connects to your systems.

Do I need to write code?

Not necessarily. Built-in sources (Bitcoin and Ethereum price, crypto market, fear & greed index, currency rates and more) can be added from the dashboard with no code. For your own numbers, a single curl command or a no-code tool like Zapier, Make or n8n with an HTTP step is enough.

Does it work on the Lock Screen and Dynamic Island?

Yes. WidgetDash supports Home Screen widgets in small, medium and large sizes, Lock Screen widgets, and on Pro, real-time Live Activities on the Lock Screen and Dynamic Island.

How much does WidgetDash cost?

Free forever for up to 5 data sources with a 15-minute refresh. Pro is $4.90 per month or $29.90 per year for unlimited sources, a 5-minute refresh and Live Activities.

Can an AI agent push numbers to my widget?

Yes. Anything that can make an HTTP request can update your widget, including AI agents and scripts. See widgetdash.app/llms.txt for a machine-readable summary of the API.

More: How to see your numbers on your iPhone · Use cases · WidgetDash vs alternatives


Terms of Service

Last updated: March 2026


Privacy Policy

Last updated: March 2026


Disclaimer

Read this before you use the Service.