Your data. Your widget. Any source.
A generic widget data platform. Push data from any service with simple collector scripts, and see it on your iPhone. The server does not care what data you push -- you define it.
Home screen widgets, lock screen widgets, and a simple setup flow.
Three steps. No complexity.
Register with a single API call and receive your read and write API keys.
Write a small collector script that fetches data from your service and pushes metrics to the API.
Data appears on your iOS widget automatically. Add it to your home screen and you are done.
Simple, decoupled, and extensible.
The server is completely generic -- it stores whatever you push. Collectors are independent scripts you write and run yourself. Anyone can write a collector for any service.
Up and running in minutes.
# 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"}'
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"} ] }'
curl https://api.widgetdash.app/api/v1/widget \
-H "Authorization: Bearer YOUR_READ_KEY"
All available endpoints. Full interactive docs here.
| Method | Endpoint | Auth | Description |
|---|---|---|---|
| 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 |
Each metric in your payload has a type that determines how the widget renders it.
Large bold number display. Perfect for counts, totals, and key figures.
Plain text value. Use for labels, names, descriptions, or any string.
Colored badge indicator. Ideal for health checks, states, and alerts.
Progress bar for values 0-100. Great for utilization, quotas, and completion.
A collector is any script or program that periodically pushes data to WidgetDash.
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)
Scan a QR code and your app is configured instantly.
Register via the API and receive your read and write keys.
Open the WidgetDash app and scan the QR code shown below (or on your dashboard).
Configuration is applied instantly. Your widgets start showing data immediately.
Configure the app from your phone's browser with a single tap.
If you are viewing this page on your iPhone, you can tap the "Open in App" button next to the QR code above. This uses a deep link to pass your server URL and read key directly into the WidgetDash app, so no manual entry is needed.
The deep link format is:
widgetdash://setup?server=https://api.widgetdash.app&key=YOUR_READ_KEY
See your data at a glance, right on your home screen.
Get the WidgetDash companion app from the App Store (coming soon).
Enter your server URL and read API key in the app settings.
Long-press your home screen and add the WidgetDash widget. Supports small, medium, and large sizes.
Last updated: March 2026
By accessing or using the WidgetDash service ("Service"), you agree to be bound by these Terms of Service ("Terms"). If you do not agree to these Terms, you may not use the Service.
WidgetDash is provided as a free, open platform for pushing and retrieving widget data via an API. There are no guarantees of uptime, availability, or continued operation of the Service.
Users retain ownership of all data they push to the Service. The Service stores only what users explicitly submit via the API. Data may be deleted without notice at the sole discretion of the service provider.
THE SERVICE IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. THE SERVICE PROVIDER DOES NOT WARRANT THAT THE SERVICE WILL BE UNINTERRUPTED, SECURE, OR ERROR-FREE.
IN NO EVENT SHALL THE SERVICE PROVIDER, ITS OPERATORS, CONTRIBUTORS, OR AFFILIATES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES, INCLUDING BUT NOT LIMITED TO LOSS OF PROFITS, DATA, USE, GOODWILL, OR OTHER INTANGIBLE LOSSES, RESULTING FROM (A) YOUR ACCESS TO OR USE OF OR INABILITY TO ACCESS OR USE THE SERVICE; (B) ANY CONDUCT OR CONTENT OF ANY THIRD PARTY ON THE SERVICE; (C) ANY CONTENT OBTAINED FROM THE SERVICE; (D) UNAUTHORIZED ACCESS, USE, OR ALTERATION OF YOUR TRANSMISSIONS OR CONTENT; (E) DATA LOSS OR CORRUPTION; (F) SECURITY BREACHES OR VULNERABILITIES. THE TOTAL LIABILITY OF THE SERVICE PROVIDER SHALL NOT EXCEED THE AMOUNT PAID BY YOU FOR USE OF THE SERVICE, WHICH IS ZERO FOR A FREE SERVICE.
You agree to indemnify, defend, and hold harmless the service provider, its operators, contributors, and affiliates from and against any and all claims, damages, obligations, losses, liabilities, costs, and expenses (including attorney's fees) arising from your use of the Service, your violation of these Terms, or your violation of any rights of a third party.
The service provider reserves the right to modify these Terms at any time without prior notice. Continued use of the Service after modifications constitutes acceptance of the revised Terms.
The service provider may terminate or suspend your access to the Service at any time, for any reason, with or without cause, and with or without notice. Upon termination, your right to use the Service ceases immediately.
These Terms shall be governed by and construed in accordance with applicable law, without regard to conflict of law principles.
If any provision of these Terms is held to be unenforceable or invalid, the remaining provisions shall continue in full force and effect.
This is a free service with no service level agreement (SLA). There are no guarantees regarding uptime, response time, throughput, or data durability.
The Service may impose rate limits on API usage at any time. Excessive or abusive use may result in throttling, temporary suspension, or permanent termination of access.
Users are solely responsible for keeping their API keys secure and confidential. The service provider is not liable for any unauthorized access, data loss, or damages resulting from compromised, leaked, or shared API keys.
Last updated: March 2026
We store only the data you explicitly push via the API. This includes: the user name you provide during registration, data source names, and the metric values you submit. No additional data is collected.
We do not collect personal information beyond what you voluntarily provide during registration (a name of your choosing). You are not required to use your real name.
We do not use cookies, analytics services, tracking pixels, or any other tracking mechanisms. This website and the API do not track your browsing behavior.
We do not share, sell, rent, or distribute your data to any third parties under any circumstances.
Your data is stored for as long as your account exists. You can delete your data sources at any time via the API. Account deletion permanently removes all associated data.
We employ industry-standard security practices to protect your data, but we cannot guarantee absolute security. No method of electronic storage or transmission over the Internet is 100% secure. Use the Service at your own risk.
We do not guarantee data backups, data recovery, or data redundancy. You are responsible for maintaining your own copies of any important data.
For privacy concerns or questions about your data, contact the service administrator.
Please read carefully before using the Service.